From 4ed25ba8f068e9be54e031ea7e25e56a3060faef Mon Sep 17 00:00:00 2001 From: Sedenu Date: Thu, 5 Dec 2024 05:07:30 +0100 Subject: [PATCH 1/2] Update index.css --- src/index.css | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.css b/src/index.css index 00ce88e..b3d07a5 100644 --- a/src/index.css +++ b/src/index.css @@ -146,7 +146,6 @@ input:focus { } .btn { - color: #fff; border: 0; border-radius: 8px; color: #fff; From 8b65c3c807f22ea24a8512b6e7ca076e6ed52aa4 Mon Sep 17 00:00:00 2001 From: Sedenu Date: Thu, 5 Dec 2024 05:11:11 +0100 Subject: [PATCH 2/2] Update index.js Add StrictMode --- src/index.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 5156d5a..140c49f 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,10 @@ -import React from 'react' +import React, { StrictMode } from 'react' import ReactDOM from 'react-dom/client' import './index.css' import App from './App' -ReactDOM.createRoot(document.getElementById('root')).render() +ReactDOM.createRoot(document.getElementById('root')).render( + + + + )