mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
* 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>
8 lines
179 B
TypeScript
8 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,
|
|
});
|