mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import AttributionReportPage from './AttributionReportPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
return <AttributionReportPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Attribution Report',
|
|
};
|