mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 05:02:11 +00:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return (
|
|
<main className="max-w-6xl w-full flex items-center justify-center px-6">
|
|
{children}
|
|
</main>
|
|
)
|
|
}
|
|
|
|
export default DashboardLayout
|