users screen + userCard component
Some checks failed
platform/bro/pipeline/pr-master This commit looks good
platform/bro/pipeline/head This commit looks good
platform/gitea-bro-js/journal.pl/pipeline/head There was a failure building this commit
platform/bro-js/journal.pl/pipeline/head This commit looks good

This commit is contained in:
2024-04-03 22:00:17 +03:00
parent 927bf3929d
commit 58342561ee
9 changed files with 340 additions and 244 deletions

View File

@@ -1,6 +1,8 @@
import React, { useEffect, Suspense } from 'react'
import { Routes, Route, useNavigate } from 'react-router-dom'
import { Provider } from 'react-redux'
import { getNavigationsValue } from '@ijl/cli'
import { Box, Container, Spinner, VStack } from '@chakra-ui/react'
import {
CourseListPage,
@@ -8,20 +10,8 @@ import {
LessonListPage,
UserPage,
} from './pages'
import { getNavigationsValue } from '@ijl/cli'
import { Box, Container, Spinner, VStack } from '@chakra-ui/react'
const Redirect = ({ path }) => {
const navigate = useNavigate()
useEffect(() => {
navigate(path)
}, [])
return null
}
const Wrapper = ({ children }) => (
const Wrapper = ({ children }: { children: React.ReactElement }) => (
<Suspense
fallback={
<Container>