0% found this document useful (0 votes)
6 views

Built-in React Components – React

The document provides an overview of built-in React components available in version 19, including <Fragment>, <Profiler>, <Suspense>, and <StrictMode>, each serving specific purposes in JSX. It also mentions the ability to create custom components as JavaScript functions. The content is part of the React API reference and includes links to additional resources.

Uploaded by

dungeon.dad87
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Built-in React Components – React

The document provides an overview of built-in React components available in version 19, including <Fragment>, <Profiler>, <Suspense>, and <StrictMode>, each serving specific purposes in JSX. It also mentions the ability to create custom components as JavaScript functions. The content is part of the React API reference and includes links to additional resources.

Uploaded by

dungeon.dad87
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

20/02/2025, 09:01 Built-in React Components – React

v19

API REFERENCE

Built-in React Components


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

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


You can also define your own components as JavaScript functions.

PREVIOUS

useTransition

NEXT

<Fragment> (<>)

https://react.dev/reference/react/components 1/2
20/02/2025, 09:01 Built-in React Components – React

Copyright © Meta Platforms, Inc

uwu?

Learn React API Reference

Quick Start React APIs

Installation React DOM APIs

Describing the UI

Adding Interactivity

Managing State

Escape Hatches

Community More

Code of Conduct Blog

Meet the Team React Native

Docs Contributors Privacy

Acknowledgements Terms

https://react.dev/reference/react/components 2/2

You might also like