mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
Fixed websites paging.
This commit is contained in:
parent
9671414edd
commit
d709f4eb80
14 changed files with 34 additions and 36 deletions
12
src/app/(main)/settings/teams/TeamsSettingsPage.tsx
Normal file
12
src/app/(main)/settings/teams/TeamsSettingsPage.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
'use client';
|
||||
import TeamsDataTable from './TeamsDataTable';
|
||||
import TeamsHeader from './TeamsHeader';
|
||||
|
||||
export default function TeamsSettingsPage() {
|
||||
return (
|
||||
<>
|
||||
<TeamsHeader />
|
||||
<TeamsDataTable />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue