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) / home / layout.tsx
405 B 21 lines
1import Header from '@/components/navigation/header/Header'; 2import type { Metadata } from 'next'; 3import { Fragment } from 'react'; 4 5export const metadata: Metadata = { 6 title: 'Library', 7 description: 'Library', 8}; 9 10interface Props { 11 children: React.ReactNode; 12} 13 14export default function Layout(props: Props) { 15 return ( 16 <Fragment> 17 <Header /> 18 {props.children} 19 </Fragment> 20 ); 21}