This commit is contained in:
2026-05-19 15:10:42 +03:00
parent 22ceb8e2b4
commit 36196a882f
10 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1 @@
export { RestorePasswordPage } from './ui/RestorePasswordPage'

View File

@@ -0,0 +1,7 @@
.page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem 0;
}

View 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>
)
}