---
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*/}
* [``](/reference/react/Fragment), alternatively written as `<>...>`, lets you group multiple JSX nodes together.
* [``](/reference/react/Profiler) lets you measure rendering performance of a React tree programmatically.
* [``](/reference/react/Suspense) lets you display a fallback while the child components are loading.
* [``](/reference/react/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](/learn/your-first-component) as JavaScript functions.