From d418c32696bb44e1cfbe744cba4eca9e30916f12 Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 24 Apr 2024 16:39:37 -0500 Subject: [PATCH] Enable strict mode (#1002) --- app/src/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/src/index.tsx b/app/src/index.tsx index 1ba52652..b9a22763 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { StrictMode } from "react"; import ReactDOM from "react-dom/client"; //import reportWebVitals from "./reportWebVitals"; import "bootstrap/dist/css/bootstrap.min.css"; @@ -24,7 +24,11 @@ function App() { ); } -root.render(); +root.render( + + + , +); // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log))