10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import MetricsView from "@/components/dashboard/categories/MetricsView";
|
|
|
|
export default async function MetricsPage() {
|
|
return (
|
|
<>
|
|
<MetricsView />
|
|
</>
|
|
);
|
|
}
|