Created
August 8, 2021 06:08
-
-
Save DJanoskova/af347456e73ae586b217d837438c0211 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import { withStore } from 'vuex-but-for-react'; | |
| import App from './App'; | |
| import store from './store'; | |
| const AppWithStore = withStore(App, store); | |
| ReactDOM.render( | |
| <AppWithStore />, | |
| document.getElementById('root') | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment