User.js 462 B

12345678910111213141516
  1. import React from 'react';
  2. import { Button } from "reactstrap";
  3. export default class User extends React.Component{
  4. render(){
  5. return (
  6. <div>
  7. {this.props.title + " - " + this.props.app.hello()}
  8. {": Name = " + this.props.name}
  9. {", Counter = " + this.props.counter + ", "}
  10. <Button color="info" onClick={(idx) => this.props.doClick(idx)}>Increment</Button>
  11. </div>
  12. )
  13. }
  14. }