Stylized atom

React Essentials

Fundamental React concepts you will need for almost any app you are going to build!

Core Concepts

  • Components

    Components

    The core UI building block - compose the user interface by combining multiple components.

  • JSX

    JSX

    Return (potentially dynamic) HTML(ish) code to define the actual markup that will be rendered.

  • Props

    Props

    Make components configurable (and therefore reusable) by passing input data to them.

  • State

    State

    React-managed data which, when changed, causes the component to re-render & the UI to update.

Examples

  • Please select a topic.