Files
yaak-mountain-loop/src-web/pages/Layout.tsx
2023-02-25 18:04:14 -08:00

10 lines
153 B
TypeScript

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