A bunch more small things

This commit is contained in:
Gregory Schier
2023-02-25 23:04:31 -08:00
parent 0b077e5e88
commit b852484559
25 changed files with 1749 additions and 918 deletions

View File

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