import React, { useState, useCallback } from 'react'; import logo from '../assets/logo-white.svg'; import arrow from '../assets/36-arrow-right.svg'; import { MainWrapper, InputElement, InputLabel, InputWrapper, LogoImg, ArrowImg, IconButton, StartWrapper, StartI, StartInput, StartLabel, } from './style'; const Input = ({ onStart }) => { const [value, setValue] = useState(''); const handleChange = useCallback(event => { setValue(event.target.value.toUpperCase()) }, [setValue]); const handleSubmit = useCallback((event) => { event.preventDefault(); if (value === 'SBER') { onStart() } }, [value]) return (
Ввод:
) } const Start = () => { return ( СТАРТ ) } export const MainPage = () => { const [showStart, setShowStart] = useState(false); return ( {!showStart && setShowStart(true)} />} {showStart && } ); };