import { connect } from 'refnux' import Link from 'next/link' import withRefnux from '../helpers/withRefnux' import getInitialState from '../store/getInitialState' // actions import counterIncrement from '../store/counterIncrement' import setTitle from '../store/setTitle' const Page1 = connect( (state, dispatch) =>
Current state: {JSON.stringify(state, null, 2)}