import type { PropsWithChildren } from 'react' export const AdminDefaultLayout = (properties: PropsWithChildren) => { const { children } = properties return (
{children}
) }