summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/components/Layout.tsx
blob: 92216872ce8f46a20e2d504e05146714e96ca97d (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Outlet } from "react-router-dom";

export default function Layout()
{
	return(
		<>
			<div>sidebar</div>
			<Outlet/>
		</>
	);
}