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

12 lines
282 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import { Metadata } from "next";
export const metadata: Metadata = {
2024-12-24 12:55:28 +00:00
title: "Media Hub | POLRI",
2024-11-26 03:09:48 +00:00
description: "Dashcode is a popular dashboard template.",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;