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