mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 17:45:38 +01:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
'use client';
|
|
import TeamsDataTable from './TeamsDataTable';
|
|
import TeamsHeader from './TeamsHeader';
|
|
|
|
export default function TeamsPage() {
|
|
return (
|
|
<>
|
|
<TeamsHeader />
|
|
<TeamsDataTable />
|
|
</>
|
|
);
|
|
}
|