diff --git a/src/components/game/Tutorial.jsx b/src/components/game/Tutorial.jsx new file mode 100644 index 0000000..96535ff --- /dev/null +++ b/src/components/game/Tutorial.jsx @@ -0,0 +1,20 @@ +import React from "react"; +import Modal from "../../components/ui/Modal.jsx"; +import { useGame } from "../../hooks/useGame.jsx"; + +export default function Tutorial() { + const { hasCheckedTutorial, setHasCheckedTutorial, setIsTimeRuning } = useGame(); + return ( +
+ {" "} + { + setHasCheckedTutorial(true); + setIsTimeRuning(true); + }}> + Tutorial + +
+ ); +}