diff --git a/examples/with-redux/pages/index.js b/examples/with-redux/pages/index.js index 5408229f..0663cfb7 100644 --- a/examples/with-redux/pages/index.js +++ b/examples/with-redux/pages/index.js @@ -1,6 +1,6 @@ import React from 'react' -import { reducer, initStore, startClock } from '../store' -import withRedux from 'next-redux-wrapper'; +import { initStore, startClock } from '../store' +import withRedux from 'next-redux-wrapper' import Page from '../components/Page' class Counter extends React.Component { @@ -24,4 +24,4 @@ class Counter extends React.Component { } } -export default withRedux(initStore)(Counter) \ No newline at end of file +export default withRedux(initStore)(Counter) diff --git a/examples/with-redux/pages/other.js b/examples/with-redux/pages/other.js index 459a6572..8152dd13 100644 --- a/examples/with-redux/pages/other.js +++ b/examples/with-redux/pages/other.js @@ -1,6 +1,6 @@ import React from 'react' -import { reducer, initStore, startClock } from '../store' -import withRedux from 'next-redux-wrapper'; +import { initStore, startClock } from '../store' +import withRedux from 'next-redux-wrapper' import Page from '../components/Page' class Counter extends React.Component { @@ -24,4 +24,4 @@ class Counter extends React.Component { } } -export default withRedux(initStore)(Counter) \ No newline at end of file +export default withRedux(initStore)(Counter)