authorizer/app/src/pages/rest-password.tsx

13 lines
302 B
TypeScript
Raw Normal View History

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