mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-27 10:36:19 +01:00
19 lines
371 B
JavaScript
19 lines
371 B
JavaScript
|
import Settings from 'components/pages/Settings';
|
||
|
import TeamsList from 'components/pages/TeamsList';
|
||
|
import useRequireLogin from 'hooks/useRequireLogin';
|
||
|
import React from 'react';
|
||
|
|
||
|
export default function TeamsPage() {
|
||
|
const { loading } = useRequireLogin();
|
||
|
|
||
|
if (loading) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Settings>
|
||
|
<TeamsList />
|
||
|
</Settings>
|
||
|
);
|
||
|
}
|