authorizer/app/src/pages/rest-password.tsx
2021-12-29 04:16:31 +05:30

13 lines
302 B
TypeScript

import React, { Fragment } from 'react';
import { AuthorizerResetPassword } from '@authorizerdev/authorizer-react';
export default function ResetPassword() {
return (
<Fragment>
<h1 style={{ textAlign: 'center' }}>Reset Password</h1>
<br />
<AuthorizerResetPassword />
</Fragment>
);
}