Files
authorizer/app/src/pages/setup-password.tsx
2022-03-15 08:53:48 +05:30

13 lines
306 B
TypeScript

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