mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 21:48:48 +00:00
* Renders targets by team * Conditional rendering for no hosts available * Update styling to match figma
12 lines
323 B
JavaScript
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,
|
|
]);
|