Components
Built-in React components for common UI patterns.
Official docs
Full reference: react.dev/reference/react/components
<Fragment>
Group multiple elements without adding extra DOM nodes:
<>
<td>Cell 1</td>
<td>Cell 2</td>
</>
<Suspense>
Show a fallback while children load:
<Suspense fallback={<Spinner />}>
<LazyComponent />
</Suspense>
<StrictMode>
Enables extra development checks and warnings.