umami/pages/users/index.js

21 lines
411 B
JavaScript
Raw Normal View History

2020-09-27 07:51:29 +00:00
import Settings from 'components/pages/Settings';
2022-10-27 23:42:57 +00:00
import useConfig from 'hooks/useConfig';
import useUser from 'hooks/useUser';
import UsersList from 'components/pages/UsersList';
2020-08-05 05:45:05 +00:00
export default function UsersPage() {
const user = useUser();
2022-10-27 23:42:57 +00:00
const { adminDisabled } = useConfig();
2020-08-05 05:45:05 +00:00
if (adminDisabled || !user) {
2020-08-05 05:45:05 +00:00
return null;
}
return (
<Settings>
<UsersList />
</Settings>
2020-08-05 05:45:05 +00:00
);
}