in 07 - Returning State/03 - Default Props and Initial State.js [40:47]
export function render(props, state) {
return (
<div>
Clicked {state.count} times
<button onClick={this(handleClick)} style={{ width: props.width }} />
</div>
);
}