mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
18 lines
389 B
JavaScript
18 lines
389 B
JavaScript
import Settings from 'components/pages/Settings';
|
|
import ProfileSettings from 'components/pages/ProfileSettings';
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
|
import React from 'react';
|
|
|
|
export default function TeamsPage() {
|
|
const { loading } = useRequireLogin();
|
|
|
|
if (loading) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Settings>
|
|
<ProfileSettings />
|
|
</Settings>
|
|
);
|
|
}
|