Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
polly89 committed Oct 7, 2023
1 parent ed433ec commit 041c52f
Showing 1 changed file with 11 additions and 22 deletions.
33 changes: 11 additions & 22 deletions src/views/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,38 +130,27 @@ export function Home({ createToken, setListToken }) {
</RoughNotation>
)}
</div>
</div>
<div className="flex flex-col items-center gap-10 mt-40">
<Button
onClick={(e) => handleCreateClick(e)}
text="CREATE LIST"
className="max-w-4xl"
/>
<button
onClick={() => setShowModal(true)}
className="underline underline-offset-8 font-semibold text-green dark:text-light-green"
className="underline underline-offset-8 font-semibold text-green dark:text-teal-200"
>
{createListMessage}
</RoughNotation>
)}
</div>
<div className="flex flex-col items-center gap-10 mt-40">
<Button
onClick={(e) => handleCreateClick(e)}
text="CREATE LIST"
className="max-w-4xl"
Join existing list
</button>
</div>
<Modal
showModal={showModal}
setShowModal={setShowModal}
modalBody={modalBody}
confirmationAction={handleTokenInputFormSubmit}
/>
<button
onClick={() => setShowModal(true)}
className="underline underline-offset-8 font-semibold text-green dark:text-teal-200"
>
Join existing list
</button>
</div>
<Modal
showModal={showModal}
setShowModal={setShowModal}
modalBody={modalBody}
confirmationAction={handleTokenInputFormSubmit}
/>
</div>
);
}

0 comments on commit 041c52f

Please sign in to comment.