feat: user profile/settings pages (#958)
This commit is contained in:
14
src/pages/profile/settings/password.tsx
Normal file
14
src/pages/profile/settings/password.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import UserSettings from '../../../components/UserProfile/UserSettings';
|
||||
import UserPasswordChange from '../../../components/UserProfile/UserSettings/UserPasswordChange';
|
||||
|
||||
const UserPassswordPage: NextPage = () => {
|
||||
return (
|
||||
<UserSettings>
|
||||
<UserPasswordChange />
|
||||
</UserSettings>
|
||||
);
|
||||
};
|
||||
|
||||
export default UserPassswordPage;
|
||||
Reference in New Issue
Block a user