mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +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>
|
|
);
|
|
}
|