mediahub-fe/app/[locale]/(protected)/curator/content-production/layout.tsx

10 lines
180 B
TypeScript

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