1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix linting errors (#1197)

This commit is contained in:
Tim Neutkens 2017-02-18 20:12:19 +01:00 committed by GitHub
parent 90f2ee6fb7
commit e5844314e3
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
import React from 'react' import React from 'react'
import { reducer, initStore, startClock } from '../store' import { initStore, startClock } from '../store'
import withRedux from 'next-redux-wrapper'; import withRedux from 'next-redux-wrapper'
import Page from '../components/Page' import Page from '../components/Page'
class Counter extends React.Component { class Counter extends React.Component {
@ -24,4 +24,4 @@ class Counter extends React.Component {
} }
} }
export default withRedux(initStore)(Counter) export default withRedux(initStore)(Counter)

View file

@ -1,6 +1,6 @@
import React from 'react' import React from 'react'
import { reducer, initStore, startClock } from '../store' import { initStore, startClock } from '../store'
import withRedux from 'next-redux-wrapper'; import withRedux from 'next-redux-wrapper'
import Page from '../components/Page' import Page from '../components/Page'
class Counter extends React.Component { class Counter extends React.Component {
@ -24,4 +24,4 @@ class Counter extends React.Component {
} }
} }
export default withRedux(initStore)(Counter) export default withRedux(initStore)(Counter)