mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
4 lines
172 B
TypeScript
4 lines
172 B
TypeScript
export default function UnsortedLayout({ children }: { children: React.ReactNode }) {
|
|
return <div className="flex flex-col gap-4 p-4 w-full max-w-6xl">{children}</div>
|
|
}
|