Customer.js 329 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 import React from 'react'; class Customer extends React.Component { render(){ return( <div> <h2>{this.props.name}</h2> <p>{this.props.birthday}</p> <p>{this.props.gender}</p> <p>{this.props.job}</p> </div> ); } } export default Customer;