Files
ember-market-frontend/components/dashboard/dashboard.tsx
2025-02-07 21:33:13 +00:00

8 lines
191 B
TypeScript

import type React from "react"
import Layout from "../layout/layout"
export default function Dashboard({ children }: { children: React.ReactNode }) {
return <Layout>{children}</Layout>
}