17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
import Header from "./components/Header";
|
|
|
|
export default function RestorantLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<main>
|
|
<Header />
|
|
<div className="flex m-auto w-2/3 justify-between items-start 0 -mt-11">
|
|
{children}
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|