mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
17 lines
319 B
TypeScript
17 lines
319 B
TypeScript
import Header from "@/components/ui/header";
|
|
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const Layout: React.FC<Props> = ({ children }) => {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main className="mx-auto my-6 max-w-3xl px-4">{children}</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|