aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/index.tsx')
-rw-r--r--FrontEnd/src/index.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/FrontEnd/src/index.tsx b/FrontEnd/src/index.tsx
index ea940004..2affb277 100644
--- a/FrontEnd/src/index.tsx
+++ b/FrontEnd/src/index.tsx
@@ -17,4 +17,8 @@ import App from "./App";
const container = document.getElementById("app");
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const root = createRoot(container!);
-root.render(<App />);
+root.render(
+ <React.StrictMode>
+ <App />
+ </React.StrictMode>
+);