removing unecessary character
This commit is contained in:
parent
267524fc61
commit
cce72809cf
|
|
@ -1,12 +1,12 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import Modal from "../../components/ui/Modal.jsx";
|
import Modal from "../../components/ui/Modal.jsx";
|
||||||
import { useGame } from "../../hooks/useGame.jsx";
|
import { useGame } from "../../hooks/useGame.jsx";
|
||||||
|
import TestAnimation from "../../components/animations/test.jsx";
|
||||||
|
|
||||||
export default function Tutorial() {
|
export default function Tutorial() {
|
||||||
const { hasCheckedTutorial, setHasCheckedTutorial, setIsTimeRuning } = useGame();
|
const { hasCheckedTutorial, setHasCheckedTutorial, setIsTimeRuning } = useGame();
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{" "}
|
|
||||||
<Modal
|
<Modal
|
||||||
open={!hasCheckedTutorial}
|
open={!hasCheckedTutorial}
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
|
|
@ -14,6 +14,7 @@ export default function Tutorial() {
|
||||||
setIsTimeRuning(true);
|
setIsTimeRuning(true);
|
||||||
}}>
|
}}>
|
||||||
Tutorial
|
Tutorial
|
||||||
|
<TestAnimation />
|
||||||
</Modal>
|
</Modal>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user