fleet/frontend/interfaces/target.js
RachelElysia e4c866cf7c
Teams grouping in Select Targets Dropdown (#873)
* Renders targets by team
* Conditional rendering for no hosts available
* Update styling to match figma
2021-06-04 12:37:56 -04:00

12 lines
323 B
JavaScript

import PropTypes from "prop-types";
import hostInterface from "interfaces/host";
import labelInterface from "interfaces/label";
// teamInterface added 5/26
import teamInterface from "interfaces/team";
// teamInterface added 5/26
export default PropTypes.oneOfType([
hostInterface,
labelInterface,
teamInterface,
]);