);
};
export default App;
From 4dfedd803f435bd8b8844998a723f4d7c54a5282 Mon Sep 17 00:00:00 2001
From: Mohammad Saad Baig <144740229+MSaadB@users.noreply.github.com>
Date: Mon, 10 Jun 2024 13:23:05 -0400
Subject: [PATCH 2/8] Update index.js
---
react-redux-master/src/index.js | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/react-redux-master/src/index.js b/react-redux-master/src/index.js
index 204055290e..68af812a47 100644
--- a/react-redux-master/src/index.js
+++ b/react-redux-master/src/index.js
@@ -1,12 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
-// import * as serviceWorker from './serviceWorker';
-
-import {createStore} from 'redux';
import {Provider} from 'react-redux'
import myReducers from './reducers'
-
+import {legacy_createStore as createStore} from 'redux';;
//Create the store
const myStore = createStore(myReducers);
@@ -17,8 +14,3 @@ myStore.subscribe(()=>console.log(myStore.getState()));
//Enveloping the App inside the Provider, ensures that the states in the store are available
//throughout the application
ReactDOM.render(, document.getElementById('root'));
-
-// If you want your app to work offline and load faster, you can change
-// unregister() to register() below. Note this comes with some pitfalls.
-// Learn more about service workers: https://bit.ly/CRA-PWA
-// serviceWorker.unregister();
From 487bcbe5d4ddbd40d6975bb9b2b322468a3807f9 Mon Sep 17 00:00:00 2001
From: Mohammad Saad Baig <144740229+MSaadB@users.noreply.github.com>
Date: Mon, 10 Jun 2024 13:23:22 -0400
Subject: [PATCH 3/8] Update App.js
From 2c9602681f57db3a71ec6292e5f6bdb32b30dc32 Mon Sep 17 00:00:00 2001
From: Mohammad Saad Baig <144740229+MSaadB@users.noreply.github.com>
Date: Mon, 10 Jun 2024 13:23:53 -0400
Subject: [PATCH 4/8] Update MainPanel.js
---
react-redux-master/src/components/MainPanel.js | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/react-redux-master/src/components/MainPanel.js b/react-redux-master/src/components/MainPanel.js
index 8b13789179..dff43de7ff 100644
--- a/react-redux-master/src/components/MainPanel.js
+++ b/react-redux-master/src/components/MainPanel.js
@@ -1 +1,13 @@
+import React from 'react'
+import MyButton from './MyButton'
+import DivPanel from './DivPanel';
+const MainPanel = ()=>{
+ return (
+