import React, {Component} from 'react' import { Col, Row } from 'react-bootstrap' import { connect } from 'react-redux' class DisplayForm extends Component { render () { const { state } = this.props return (
{JSON.stringify(state, null, 2) }
) } } const mapStateToProps = state => { return { state } } export default connect(mapStateToProps)(DisplayForm)