8 lines
191 B
TypeScript
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>
|
|
}
|
|
|