import React from 'react'; import { Button } from "reactstrap"; export default class User extends React.Component{ render(){ return (
{this.props.title + " - " + this.props.app.hello()} {": Name = " + this.props.name} {", Counter = " + this.props.counter + ", "}
) } }