mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
18 lines
359 B
JavaScript
18 lines
359 B
JavaScript
|
import SettingsLayout from 'components/pages/settings/SettingsLayout';
|
||
|
import TeamsList from 'components/pages/settings/teams/TeamsList';
|
||
|
import useUser from 'hooks/useUser';
|
||
|
|
||
|
export default function TeamsPage() {
|
||
|
const user = useUser();
|
||
|
|
||
|
if (!user) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<SettingsLayout>
|
||
|
<TeamsList />
|
||
|
</SettingsLayout>
|
||
|
);
|
||
|
}
|