Status Display
Displays the health status of the application and its connected APIs. Used in status pages to show connectivity, configuration, and service health at a glance.
Import
import { StatusContainer } from "@phpcreation/frontend-components-react-nextjs-bundle/containers/StatusContainer";Props
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
Layout | React.ComponentType | — | — | Optional custom layout wrapper |
Usage
// app/[locale]/status/page.tsx
import { StatusContainer } from "@phpcreation/frontend-components-react-nextjs-bundle/containers";
export default function StatusPage() {
return <StatusContainer />;
}Behavior
- Fetches status data from
/api/statusendpoint - Renders results in a
Tablecomponent - Shows
Skeletonrows while loading
Related
Last updated on