fleet/frontend/interfaces/label.js
Mike Stone 630ba45448 756 status labels (#967)
* API client to get status label summary

* Handle status label counts in state

* Display status counts in hosts side panel
2017-01-16 15:59:01 -05:00

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,
});