first commit
This commit is contained in:
11
components/layout/Layout.tsx
Normal file
11
components/layout/Layout.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import TabNavigation from "./TabNavigation";
|
||||
|
||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<div className="min-h-screen bg-background pb-16">
|
||||
{children}
|
||||
<TabNavigation />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user