import SoftwareIcon from "pages/SoftwarePage/components/icons/SoftwareIcon"; import React from "react"; const baseClass = "setup-software-process-cell"; interface ISetupSoftwareProcessCell { name: string; url?: string | null; } const SetupSoftwareProcessCell = ({ name, url }: ISetupSoftwareProcessCell) => { return (
Install {name || "Unknown software"}
); }; export default SetupSoftwareProcessCell;