export function render()

in 07 - Returning State/02 - Module Pattern.js [24:31]


export function render(props : P, state) {
  return (
    <div>
      Clicked {state ? state.count : 0} times
      <button onClick={this(handleClick)} style={{ width: props.width }} />
    </div>
  );
}