Skip to content

Instantly share code, notes, and snippets.

@vipinlahoti
Created August 5, 2023 01:50
rootApp()
import React from 'react';
import { Provider } from 'react-redux';
import Counter from './Counter';
import store from './store';
function App() {
return (
<Provider store={store}>
<Counter />
</Provider>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment