test request

This commit is contained in:
2024-02-15 16:39:59 +03:00
parent f7a8c9e077
commit a401290920
2 changed files with 24 additions and 4 deletions
+2 -4
View File
@@ -64,12 +64,10 @@ const Input = ({ onStart }) => {
}
export const MainPage = () => {
const [shoList, setShoList] = useState(false);
return (
<MainWrapper>
{!shoList && <Input onStart={() => setShoList(true)} />}
{shoList && <Journal />}
{/* {!shoList && <Input onStart={() => setShoList(true)} />} */}
<Journal />
</MainWrapper>
);
};