Files
umami/src/app/(main)/reports/attribution/page.tsx
2025-03-18 10:00:23 -07:00

11 lines
233 B
TypeScript

import AttributionReportPage from './AttributionReportPage';
import { Metadata } from 'next';
export default function () {
return <AttributionReportPage />;
}
export const metadata: Metadata = {
title: 'Attribution Report',
};