Files
react-samples/helloworld-react-redux-reselect/src/components/HelloWorld.js
Tommy Parnell d5173dc34f really stopping
2018-11-03 08:17:07 -04:00

17 lines
404 B
JavaScript

import React, { Component } from 'react';
export default class HelloWorld extends Component {
render(){
return (
<div>
<h2>{this.props.message}</h2>
<h4> You have clicked the button {this.props.clicks} times</h4>
<input
type="button"
value="Click to increment"
onClick={this.props.incrementClick}
/>
</div>
)
}
}