import { connect } from 'react-redux' import Clock from './Clock' import AddCount from './AddCount' export default connect(state => state)(({ title, lastUpdate, light }) => { return (

Redux: {title}

) })