Added react-router

This commit is contained in:
Gregory Schier
2023-02-25 18:04:14 -08:00
parent e4a257b807
commit 2cf7ced1f2
12 changed files with 180 additions and 67 deletions

9
src-web/pages/Layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Outlet } from 'react-router-dom';
export function Layout() {
return (
<div className="w-full h-full">
<Outlet />
</div>
);
}