import React, { VFC } from 'react'; import { Group } from '~/components/common/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 = ({ onClose }) => (
Проверьте почту, мы отправили на неё код
); export { RestoreSent };