mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
4 lines
168 B
TypeScript
4 lines
168 B
TypeScript
export default async function DocsLayout({ children }: { children: React.ReactNode }) {
|
|
return <div className="mx-auto max-w-screen-md px-4 py-16">{children}</div>
|
|
}
|