import { Power } from 'lucide-react'; import { StatsItem } from '@@/StatsItem'; interface Props { running: number; stopped: number; } export function RunningStatus({ running, stopped }: Props) { return (
{`${running || '-'} running`}
{`${stopped || '-'} stopped`}
); }