diff --git a/components/calender/modals/AddSticker.tsx b/components/calender/modals/AddSticker.tsx index da267e3..ddb31e6 100644 --- a/components/calender/modals/AddSticker.tsx +++ b/components/calender/modals/AddSticker.tsx @@ -7,10 +7,13 @@ import { ModalCloseButton, ModalBody, ModalFooter, - Heading + Heading, + HStack, + VStack } from "@chakra-ui/react"; -import React, { Fragment } from "react"; +import React, { Fragment, useState } from "react"; import { format } from "date-fns"; +import DemoStickers from "../stickers/DemoStickers"; interface AddStickerProps { isOpen: boolean; @@ -40,6 +43,8 @@ const AddSticker = ({ * Show a message when a date before the current date is selected. */ + const [selectedSticker, setSelectedSticker] = useState(null); + return ( updateIsOpen(!isOpen)} motionPreset="slideInBottom" scrollBehavior="inside" + size="lg" > - - {format(date, "LLLL do, y")} + + {`Which sticker did you earn for ${format(date, "LLL d, y")}?`} - - + + + + + + + + +