2022-12-27 01:57:59 +01:00
|
|
|
import Settings from 'components/pages/Settings';
|
|
|
|
import ProfileSettings from 'components/pages/ProfileSettings';
|
2022-12-29 00:43:22 +01:00
|
|
|
import useUser from 'hooks/useUser';
|
2022-12-27 01:57:59 +01:00
|
|
|
|
|
|
|
export default function TeamsPage() {
|
2022-12-29 00:43:22 +01:00
|
|
|
const user = useUser();
|
2022-12-27 01:57:59 +01:00
|
|
|
|
2022-12-29 00:43:22 +01:00
|
|
|
if (!user) {
|
2022-12-27 01:57:59 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Settings>
|
|
|
|
<ProfileSettings />
|
|
|
|
</Settings>
|
|
|
|
);
|
|
|
|
}
|