1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

move auth containers from 'dialogs'

This commit is contained in:
Fedor Katurov 2023-11-19 17:05:08 +06:00
parent b3acef0a1e
commit 92efb1e97e
26 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,25 @@
import React, { VFC } from 'react';
import { Group } from '~/components/containers/Group';
import { Button } from '~/components/input/Button';
import { Icon } from '~/components/input/Icon';
import styles from './styles.module.scss';
interface RestoreSentProps {
onClose: () => void;
}
const RestoreSent: VFC<RestoreSentProps> = ({ onClose }) => (
<Group className={styles.shade}>
<Icon icon="check" size={64} />
<div>Проверьте почту, мы отправили на неё код</div>
<div />
<Button onClick={onClose}>Отлично!</Button>
</Group>
);
export { RestoreSent };