import { Metadata } from 'next'
import { Header } from '@/components/header'
import Sidebar from './components/sidebar'
export const metadata: Metadata = {
title: {
default: 'Home',
template: `Tabby - %s`
}
}
interface DashboardLayoutProps {
children: React.ReactNode
}
export default function RootLayout({ children }: DashboardLayoutProps) {
return (
<>
{children}
>
)
}