render()

in 09 - Reduce State/01 - Declarative Component Module.js [14:22]


  render(props, state) {
    return (
      <div>
        {state.name || 'Loading name...'}
        Clicked {state ? state.count : 0} times
        <button signal="button" style={{ width: props.width }} />
      </div>
    );
  },