mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 00:27:11 +01:00
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
'use client';
|
|
import { Metadata } from 'next';
|
|
import ReportsHeader from './ReportsHeader';
|
|
import ReportsDataTable from './ReportsDataTable';
|
|
|
|
export default function ReportsPage({ teamId }: { teamId: string }) {
|
|
return (
|
|
<>
|
|
<ReportsHeader />
|
|
<ReportsDataTable teamId={teamId} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Reports',
|
|
};
|