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.
The EntitiesConfig is the point from which you will import { entities } from '/path/to/config'
import { entities } from '/path/to/config'
This is the configuration file that hooks into redux-capacitor
configuration (object): An object with:
configuration
schemas
records
resourceConfig
apiClient
import EntitiesConfig, { entities } from 'redux-capacitor' import { records, schemas } from './records' import resourceConfig from './resource_config' import ApiClient from './client' const SWApiClient = new ApiClient({baseUrl: 'https://swapi.co/api/'}) EntitiesConfig.configure({ schemas, records, resourceConfig, apiClient: SWApiClient }) export { ApiClient, entities }