# This is the 1st commit message: first commit # This is the commit message #2: fixed cache
3 lines
142 B
TypeScript
3 lines
142 B
TypeScript
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return <div className="max-w-3xl mx-auto">{children}</div>;
|
|
}
|