import React from 'react'; import { AdminNav } from './nav'; export type AdminSectionLayoutProps = { children: React.ReactNode; }; export default function AdminSectionLayout({ children }: AdminSectionLayoutProps) { return (