mediahub-fe/app/[locale]/(protected)/contributor/agenda-setting/layout.tsx

10 lines
170 B
TypeScript
Raw Normal View History

2024-11-27 04:14:10 +00:00
export const metadata = {
title: "Calender",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;