feat(manage-validator): add outlet for right manage side

This commit is contained in:
RadoslavDimchev 2024-03-23 17:32:24 +02:00 committed by Emil Ivanichkov
parent cefbe28df7
commit ae44e2ece2
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { XStack } from 'tamagui'
import { Outlet } from 'react-router-dom'
import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar'
import RightManage from './RightManage/RightManage'
import LeftManage from './LeftManage/LeftManage'
const ManageValidator = () => {
@ -16,7 +16,9 @@ const ManageValidator = () => {
}}
>
<LeftManage />
<RightManage />
<div style={{ flexGrow: 1 }}>
<Outlet />
</div>
</XStack>
</XStack>
)