11 lines
233 B
TypeScript
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',
|
|
};
|