+
+
+ Dummy a gagné !
+ Le tueur était Bob
+
+
+
+

+
+
+
+ );
+}
+
+export default EndGame;
diff --git a/cryptide_project/src/Pages/InGame.tsx b/cryptide_project/src/Pages/InGame.tsx
index 1c9e96b..81fa7b8 100644
--- a/cryptide_project/src/Pages/InGame.tsx
+++ b/cryptide_project/src/Pages/InGame.tsx
@@ -1,6 +1,12 @@
import React, { useState } from 'react';
+
+/* Component */
import GraphContainer from '../Components/GraphContainer';
import ChoiceBar from '../Components/ChoiceBar';
+import ButtonImgNav from '../Components/ButtonImgNav';
+
+/* Icon */
+import Leave from "../res/icon/leave.png";
const InGame = () => {
const [showChoiceBar, setShowChoiceBar] = useState(false);
@@ -15,6 +21,9 @@ const InGame = () => {