umami/pages/profile/index.js

19 lines
389 B
JavaScript
Raw Normal View History

2022-12-26 07:00:20 +01:00
import Settings from 'components/pages/Settings';
2022-12-26 21:34:23 +01:00
import ProfileSettings from 'components/pages/ProfileSettings';
2022-12-26 07:00:20 +01:00
import useRequireLogin from 'hooks/useRequireLogin';
import React from 'react';
export default function TeamsPage() {
const { loading } = useRequireLogin();
if (loading) {
return null;
}
return (
<Settings>
2022-12-26 21:34:23 +01:00
<ProfileSettings />
2022-12-26 07:00:20 +01:00
</Settings>
);
}