Skip to content

Commit

Permalink
Update config import in getting started documentation - resolves #324
Browse files Browse the repository at this point in the history
  • Loading branch information
adhyapranata committed Sep 25, 2019
1 parent a52282f commit 838d879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/basics/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ npm install --save @redux-offline/redux-offline
```js
import { createStore } from 'redux';
import { offline } from '@redux-offline/redux-offline';
import config from '@redux-offline/redux-offline/lib/config';
import offlineConfig from '@redux-offline/redux-offline/lib/defaults';

const store = createStore(reducer, offline(config));
const store = createStore(reducer, offline(offlineConfig));
```

#### Make a request
Expand Down

0 comments on commit 838d879

Please sign in to comment.