feat(manage-validator): add outlet for right manage side
This commit is contained in:
parent
cefbe28df7
commit
ae44e2ece2
|
@ -1,7 +1,7 @@
|
||||||
import { XStack } from 'tamagui'
|
import { XStack } from 'tamagui'
|
||||||
|
import { Outlet } from 'react-router-dom'
|
||||||
|
|
||||||
import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar'
|
import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar'
|
||||||
import RightManage from './RightManage/RightManage'
|
|
||||||
import LeftManage from './LeftManage/LeftManage'
|
import LeftManage from './LeftManage/LeftManage'
|
||||||
|
|
||||||
const ManageValidator = () => {
|
const ManageValidator = () => {
|
||||||
|
@ -16,7 +16,9 @@ const ManageValidator = () => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<LeftManage />
|
<LeftManage />
|
||||||
<RightManage />
|
<div style={{ flexGrow: 1 }}>
|
||||||
|
<Outlet />
|
||||||
|
</div>
|
||||||
</XStack>
|
</XStack>
|
||||||
</XStack>
|
</XStack>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue