mediahub-fe/app/[locale]/(protected)/charts/chart-js/charts-chartjs-scriptable/layout.tsx

10 lines
188 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
export const metadata = {
title: "Chart-js Scriptable Chart ",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;