// This component is used on ManageSoftwarePage.tsx and Homepage.tsx > Software.tsx card import React from "react"; import ExternalLinkIcon from "../../../../assets/images/open-new-tab-12x12@2x.png"; const baseClass = "manage-software-page"; type IEmptySoftware = "disabled" | "collecting" | "default" | ""; const EmptySoftware = (message: IEmptySoftware): JSX.Element => { switch (message) { case "disabled": { return (

Software inventory is disabled.

Check out the Fleet documentation on{" "} how to configure software inventory{" "} External link

); } case "collecting": { return (

Fleet is collecting software inventory.

Try again in about 1 hour as the system catches up.

); } default: { return (

No software matches the current search criteria.

Try again in about 1 hour as the system catches up.

); } } }; export default EmptySoftware;