first commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { Outlet } from 'react-router-dom'
|
||||
import { TopNav } from '../components/TopNav.jsx'
|
||||
|
||||
export function SiteLayout() {
|
||||
return (
|
||||
<div className="app-shell">
|
||||
<TopNav />
|
||||
<main className="app-main">
|
||||
<Outlet />
|
||||
</main>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user