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