Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction_To_React.pdf

Randy Vianda Putra
April 27, 2019
240

 Introduction_To_React.pdf

Randy Vianda Putra

April 27, 2019
Tweet

Transcript

  1. Randy Vianda Putra, live in Bandung - Software Engineer @Docotel

    - Frontend Engineer @WorkLifeBeyond - Instructor @Cilsy Hello! [email protected] github.com/randyviandaputra @randyvp
  2. Agenda - What is React - Who’s using React -

    Concept of React - Why React - Fundamental React - Build first app using React
  3. What is React ? A Javascript Library for building UI

    (User Interfaces), not a framework like Backbone, Angular etc, the V in MVC
  4. Props - Passed down to component from parent component and

    represents data for the component - accessed via this.props
  5. State - Represents internal state of the component - Accessed

    via this.state - When a component's state data changes, the rendered markup will be updated by re-invoking render() method