From 5daa3fe7c55e17b84f283592b8154a3d093b0aff Mon Sep 17 00:00:00 2001 From: hyeonjiroh Date: Mon, 10 Feb 2025 16:10:26 +0900 Subject: [PATCH] chore: Use StrictMode --- src/main.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.jsx b/src/main.jsx index cc37cc9..620d67b 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -1,10 +1,10 @@ -// import { StrictMode } from 'react'; +import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import '@/index.css'; import App from './App.jsx'; createRoot(document.getElementById('root')).render( - // - - // + + + );