Skip to Content

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

PropTypeRequiredDefaultDescription
LayoutReact.ComponentTypeOptional 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/status endpoint
  • Renders results in a Table component
  • Shows Skeleton rows while loading

Last updated on