Core Concepts
Components
The core UI building block - compose the user interface by combining multiple components.
JSX
Return (potentially dynamic) HTML(ish) code to define the actual markup that will be rendered.
Props
Make components configurable (and therefore reusable) by passing input data to them.
State
React-managed data which, when changed, causes the component to re-render & the UI to update.
Examples
Please Click to Choose