umami/src/app/(main)/settings/teams/page.tsx

21 lines
359 B
TypeScript
Raw Normal View History

2023-10-04 08:46:00 +00:00
import TeamsDataTable from './TeamsDataTable';
2023-09-29 12:29:22 +00:00
import TeamsHeader from './TeamsHeader';
2023-10-08 05:42:49 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
export default function () {
if (process.env.cloudMode) {
return null;
}
return (
<>
<TeamsHeader />
2023-10-04 08:46:00 +00:00
<TeamsDataTable />
2023-09-29 12:29:22 +00:00
</>
);
}
2023-10-08 05:42:49 +00:00
export const metadata: Metadata = {
title: 'Teams Settings | umami',
};