kontenhumas-fe/app/[locale]/(admin)/admin/task/layout.tsx

10 lines
166 B
TypeScript
Raw Normal View History

2025-09-25 15:46:47 +00:00
export const metadata = {
title: "Task",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;