import { FormEventHandler } from 'react' import { Button, Form } from 'react-bootstrap' type AuthFormProps = { register: boolean handleAuth: FormEventHandler, loading: boolean, error: string } function AuthForm ({ handleAuth, register, loading, error }: AuthFormProps) { const buttonText = loading ? 'Загрузка...' : (error || (register ? 'Зарегистрироваться' : 'Войти')) return (
Почта {register && <> Имя Фамилия } Пароль {register && Я согласен с условиями обработки персональных данных }
) } export default AuthForm