Files
requestarr/src/pages/profile/settings/password.tsx
2022-08-19 10:59:27 +00:00

14 lines
376 B
TypeScript

import type { NextPage } from 'next';
import UserSettings from '../../../components/UserProfile/UserSettings';
import UserPasswordChange from '../../../components/UserProfile/UserSettings/UserPasswordChange';
const UserPassswordPage: NextPage = () => {
return (
<UserSettings>
<UserPasswordChange />
</UserSettings>
);
};
export default UserPassswordPage;