Fix imports.

This commit is contained in:
Lucid Kobold
2022-06-23 13:25:23 -05:00
parent 92617f9b6d
commit f5eb0acddc
16 changed files with 38 additions and 31 deletions

View File

@@ -1,3 +1,6 @@
import React, { useState, useRef } from "react";
import { useAppDispatch } from "../../../app/hooks";
import { addEditSticker } from "../../../features/calender/stickers";
import {
Button,
Modal,
@@ -13,13 +16,10 @@ import {
SimpleGrid,
Box
} from "@chakra-ui/react";
import React, { useState, useRef } from "react";
import { format, isSameDay } from "date-fns";
import { Icon } from "@iconify/react";
import StickerSelector from "./StickerSelector";
import DemoStickers from "../stickers/DemoStickers";
import { useAppDispatch } from "../../../app/hooks";
import { addEditSticker } from "../../../features/calender/stickers";
interface AddStickerProps {
isOpen: boolean;