You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
321 B

import { Outlet } from 'react-router-dom';
import Sidebar from '../components/Sidebar';
import { Flex } from '@chakra-ui/react';
const Layout = () => {
return (
<Flex maxW="large" h="auto" position="relative">
<Sidebar />
<Outlet />
</Flex>
);
};
export default Layout;