Select the types of activity you want to include in your feed.
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}