Skip to content

Commit

Permalink
Fix: EventProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
14KGun committed Sep 15, 2023
1 parent c2497ca commit b8d87a0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/components/Event/EventProvider/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import { useState } from "react";

import { ModalEvent2023FallRandomBox } from "components/ModalPopup";

const EventProvider = () => {
const [isOpen, setIsOpen] = useState(true);
return (
<ModalEvent2023FallRandomBox isOpen={isOpen} onChangeIsOpen={setIsOpen} />
);
return null;
};

export default EventProvider;

0 comments on commit b8d87a0

Please sign in to comment.