mirror of
https://github.com/umami-software/umami.git
synced 2026-02-21 13:05:36 +01:00
20 lines
359 B
TypeScript
20 lines
359 B
TypeScript
import TeamsDataTable from './TeamsDataTable';
|
|
import TeamsHeader from './TeamsHeader';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
if (process.env.cloudMode) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<TeamsHeader />
|
|
<TeamsDataTable />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Teams Settings | umami',
|
|
};
|