14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import UserSettings from '@app/components/UserProfile/UserSettings';
|
|
import UserPermissions from '@app/components/UserProfile/UserSettings/UserPermissions';
|
|
import type { NextPage } from 'next';
|
|
|
|
const UserPermissionsPage: NextPage = () => {
|
|
return (
|
|
<UserSettings>
|
|
<UserPermissions />
|
|
</UserSettings>
|
|
);
|
|
};
|
|
|
|
export default UserPermissionsPage;
|