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