Skip to content

Commit

Permalink
Fix RedirectException import in README's example. Fixes #69
Browse files Browse the repository at this point in the history
  • Loading branch information
aoc committed Jan 28, 2017
1 parent 991b0da commit dc1441e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,8 @@ These behave similarly to their counterparts above, except that the options obje
Found exposes lower-level functionality for doing server-side rendering for use with your own Redux store, as with `createConnectedRouter` above. On both the server, use `getStoreRenderArgs` to get a promise for the arguments to your `render` function, then wrap the rendered elements with a `<RouterProvider>`.

```js
import { getStoreRenderArgs } from 'found';
import { RedirectException, RouterProvider } from 'found/lib/server';
import { getStoreRenderArgs, RedirectException } from 'found';
import { RouterProvider } from 'found/lib/server';

/* ... */

Expand Down

0 comments on commit dc1441e

Please sign in to comment.