Files
yaak/src-web/components/Layout.tsx
2023-02-25 23:04:31 -08:00

11 lines
152 B
TypeScript

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