mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* API client to get status label summary * Handle status label counts in state * Display status counts in hosts side panel
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
loading_counts: PropTypes.bool,
|
|
online_count: PropTypes.number,
|
|
offline_count: PropTypes.number,
|
|
mia_count: PropTypes.number,
|
|
});
|