mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
b11c906eba
* Build SoftwareList in HostDetails page if host.software exists for user * Render message for no labels/packs/software Reviewed and suggested changes by: Noah Talerman <noah@fleetdm.com> and Zach Wasserman <zach@fleetdm.com>
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
type: PropTypes.string,
|
|
name: PropTypes.string,
|
|
version: PropTypes.string,
|
|
id: PropTypes.number,
|
|
});
|