UNPKG

pulse-dashboard

Version:

A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI too

6 lines 234 B
import { cn } from "@/lib/utils"; function Skeleton({ className, ...props }) { return (<div className={cn("animate-pulse rounded-md bg-muted", className)} {...props}/>); } export { Skeleton }; //# sourceMappingURL=skeleton.jsx.map