This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / app / (dashboard) / layout.tsx
218 B 8 lines
1import Dashboard from '@/components/navigation/dashboard/Dashboard'; 2 3interface Props { 4 children: React.ReactNode; 5} 6export default function Layout(props: Props) { 7 return <Dashboard>{props.children}</Dashboard>; 8}