mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
630ba45448
* API client to get status label summary * Handle status label counts in state * Display status counts in hosts side panel
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
hosts_count: PropTypes.number,
|
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
title: PropTypes.string,
|
|
type: PropTypes.string,
|
|
});
|