mediahub-fe/app/[locale]/(protected)/charts/appex-charts/charts-appex-candlestick/layout.tsx

9 lines
184 B
TypeScript

export const metadata = {
title: "Appex Candlestick Chart",
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};
export default Layout;