mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
17 lines
359 B
JavaScript
17 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>
|
|
);
|
|
}
|