mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
13 lines
274 B
TypeScript
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;
|