mediahub-fe/app/[locale]/(protected)/notifications/layout.tsx

10 lines
175 B
TypeScript

export const metadata = {
title: "Notifications",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;