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

12 lines
281 B
TypeScript
Raw Normal View History

2024-11-28 17:23:53 +00:00
import { Metadata } from "next";
2024-11-27 04:14:10 +00:00
2024-11-28 17:23:53 +00:00
export const metadata: Metadata = {
title: "Dashcode Next Js",
description: "Dashcode is a popular dashboard template.",
};
2024-11-27 04:14:10 +00:00
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;