15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
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; |