You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

813 B

title
Built-in React Components

React exposes a few built-in components that you can use in your JSX.


Built-in components {/built-in-components/}

  • <Fragment>, alternatively written as <>...</>, lets you group multiple JSX nodes together.
  • <Profiler> lets you measure rendering performance of a React tree programmatically.
  • <Suspense> lets you display a fallback while the child components are loading.
  • <StrictMode> enables extra development-only checks that help you find bugs early.

Your own components {/your-own-components/}

You can also define your own components as JavaScript functions.