assistant-todo/src/app/task/layout.tsx

7 lines
180 B
TypeScript
Raw Normal View History

2024-04-12 06:43:55 -04:00
import SideNav from '@/app/ui/dashboard/sidenav';
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<div>{children}</div>
);
}