React Components
Last Updated March 29, 2025
GuideDifferent Types of Components
Currently, there are two types of components available in the documentation site:
- Astro Components: These are components written in Astro and are used to create static HTML pages. Use these components when you don’t need any client-side interactivity. Astro components can be used from other Astro components but can not be used from React components.
- React Components: These are components written in React and are used to create dynamic, interactive pages. Use these components when you need client-side interactivity or state management. React components can be used from other React components and from Astro components.
Writing React Components
- React components are written in
.tsx
files in the/src/components
directory. - You can use the
useTranslation
anduseTokenTranslation
utility functions from@/lib/utils
to translate strings in React components. See Using Translations in Doc Pages for more information on how to use translations in React components.
Available React Components
UI Components
Banners
API Disclaimer Banner
Librarian Standards Banner
GraphQL Explorer
These components are planned to be replaced and will be documented at that time.