mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 09:35:36 +01:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
'use client';
|
|
import { TeamsDataTable } from './TeamsDataTable';
|
|
import { TeamsHeader } from './TeamsHeader';
|
|
|
|
export function TeamsSettingsPage() {
|
|
return (
|
|
<>
|
|
<TeamsHeader />
|
|
<TeamsDataTable />
|
|
</>
|
|
);
|
|
}
|