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

10 lines
175 B
TypeScript
Raw Normal View History

2024-12-26 11:29:22 +00:00
export const metadata = {
title: "Notifications",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;