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