14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
import { Box } from '@radix-ui/themes'
|
|
import { observer } from 'mobx-react-lite'
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
const MainPage = observer(() => {
|
|
|
|
return (
|
|
<Box className='size-full'>
|
|
<Outlet />
|
|
</Box>
|
|
)
|
|
})
|
|
|
|
export default MainPage |