This commit is contained in:
2026-05-15 11:11:10 +08:00
commit b6e2174b55
20 changed files with 2698 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Link, Outlet } from 'react-router';
const RootLayout = () => {
return (
<>
<nav>
<Link to="/"></Link>
{' | '}
<Link to="/about"></Link>
</nav>
<main>
<Outlet />
</main>
</>
);
};
export default RootLayout;