13 lines
317 B
TypeScript
13 lines
317 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>
|
||
|
);
|
||
|
}
|