import React, { Component } from 'react'; import { Row, Col } from 'react-bootstrap'; export default class TitleValue extends Component { render() { return ( {this.props.title} {this.props.children || this.props.value} ); } }