in 07 - Returning State/01 - Stateful Functions.js [33:40]
export function Counter(props : P, state) {
return (
<div>
Clicked {state ? state.count : 0} times
<button onClick={this(handleClick)} style={{ width: props.width }} />
</div>
);
}