ChristopherJKoen's picture
Initial React Transcription
1643ce8
raw
history blame contribute delete
404 Bytes
import type { ReactNode } from "react";
type PageShellProps = {
children: ReactNode;
className?: string;
};
export function PageShell({ children, className = "" }: PageShellProps) {
return (
<main
className={[
"max-w-4xl mx-auto my-8 bg-white shadow-sm ring-1 ring-gray-200 rounded-xl p-6 md:p-8",
className,
].join(" ")}
>
{children}
</main>
);
}