Files
the-biergarten-app/archive/next-js-web-app/src/components/ui/Layout.tsx
2026-04-20 02:30:25 -04:00

13 lines
274 B
TypeScript

import { FC, ReactNode } from 'react';
import Navbar from './Navbar';
const Layout: FC<{ children: ReactNode }> = ({ children }) => {
return (
<div className="flex h-full flex-col" id="app">
<Navbar />
{children}
</div>
);
};
export default Layout;