mediahub-fe/app/[locale]/(protected)/blocks/statistic-widget/layout.tsx

15 lines
301 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import { Metadata } from "next";
export const metadata: Metadata = {
title: 'Statistic Widget',
description: 'Statistic Widget Description'
}
const StatisticWidget = ({children}: {children: React.ReactNode}) => {
return (
<>
{children}
</>
);
};
export default StatisticWidget;