f
This commit is contained in:
1
src/pages/restore-password/index.ts
Normal file
1
src/pages/restore-password/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { RestorePasswordPage } from './ui/RestorePasswordPage'
|
||||
@@ -0,0 +1,7 @@
|
||||
.page {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 1rem 0;
|
||||
}
|
||||
10
src/pages/restore-password/ui/RestorePasswordPage.tsx
Normal file
10
src/pages/restore-password/ui/RestorePasswordPage.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { RestorePasswordForm } from '@widgets/restore-password-form'
|
||||
import styles from './RestorePasswordPage.module.css'
|
||||
|
||||
export function RestorePasswordPage() {
|
||||
return (
|
||||
<div className={styles.page}>
|
||||
<RestorePasswordForm />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user