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:
parent
90f2ee6fb7
commit
e5844314e3
|
@ -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)
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue