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