import React from 'react' import ButtonWrapper from '../Buttons/ButtonWrapper' import ImportFreeBlockButton from '../Buttons/ImportFreeBlockButton' import ItemCard from '../Card/ItemCard' import useGlobalConfig from '../Contexts/useGlobalConfig' import styles from '../Card/KitCard.module.scss' const SearchResultItem = ({ item }) => { // We read the item downloaded value out of our global react context: const { getDownloadedItemId } = useGlobalConfig() return ( {item.name} )} Buttons={( )} title={item.name} description='' /> ) } export default SearchResultItem