import "./styles.sass"; import Software from "@/pages/tools/linux/InstallSoftware/software.jsx"; export const SoftwareGrid = ({currentItem, setCurrentItem}) => (
{Software.map((software) => (
setCurrentItem(software.name)} key={software.name}> {software.name}/

{software.name}

))}
)