mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
20 lines
429 B
TypeScript
20 lines
429 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',
|
|
};
|