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