We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Files do not need to be structured into specific directories, but certain components are needed.
As an example, view src/api and src/store for a minimal setup
src/api
src/store
config.js
EntitiesConfig
redux-capacitor
client.js
records.js
resource_config.js
configureStore.js
EntitiesModule.rootReducer
react-redux-saga.js
Saga
react-redux
Provider
rootSaga.js
Combines the store and saga configuration pieces to wrap the app in the appropriate providers
ReactDOM.render( <Sagas middleware={sagaMiddleware}> <Provider store={store}> <App /> </Provider> </Sagas>, document.getElementById('root') )