import React, { Component } from 'react' import { connect } from 'react-redux' class CounterDisplay extends Component { render () { return (
This counter is connected via the connect function. Components which are not pages can be connected using the connect function just like redux components.
Current value {this.props.counter}