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