removing unecessary character

This commit is contained in:
Antoine M 2024-02-15 18:54:49 +01:00
parent 267524fc61
commit cce72809cf

View File

@ -1,12 +1,12 @@
import React from "react";
import Modal from "../../components/ui/Modal.jsx";
import { useGame } from "../../hooks/useGame.jsx";
import TestAnimation from "../../components/animations/test.jsx";
export default function Tutorial() {
const { hasCheckedTutorial, setHasCheckedTutorial, setIsTimeRuning } = useGame();
return (
<div>
{" "}
<Modal
open={!hasCheckedTutorial}
onClose={() => {
@ -14,6 +14,7 @@ export default function Tutorial() {
setIsTimeRuning(true);
}}>
Tutorial
<TestAnimation />
</Modal>
</div>
);