Added todos. Refactored month component to use the day component.

This commit is contained in:
Lucid Kobold
2022-01-04 11:55:19 -06:00
parent c5490e1502
commit f25fbdcbc4
3 changed files with 104 additions and 77 deletions

View File

@@ -16,7 +16,10 @@ const AddSticker = (): JSX.Element => {
return (
<Fragment>
<Button onClick={() => setIsOpen(!isOpen)}>Open Modal</Button>
{/**
* TODO: Add prop that will be the trigger for opening the modal.
* <Button onClick={() => setIsOpen(!isOpen)}>Open Modal</Button>
*/}
<Modal isOpen={isOpen} onClose={() => setIsOpen(!isOpen)}>
<ModalOverlay />