uncomment main feature

This commit is contained in:
Primakov Alexandr Alexandrovich 2022-11-28 13:21:55 +03:00
parent fc50514dbc
commit 288c917def

View File

@ -195,9 +195,8 @@ export const MainPage = () => {
return ( return (
<MainWrapper> <MainWrapper>
<LogoImg src={logo} /> <LogoImg src={logo} />
<Start /> {!showStart && <Input onStart={() => setShowStart(true)} />}
{/* {!showStart && <Input onStart={() => setShowStart(true)} />} {showStart && <Start />}
{showStart && <Start />} */}
</MainWrapper> </MainWrapper>
); );
}; };