import React from 'react' import { IoIosBeer } from 'react-icons/io' import { Card } from '../Card' import { ExistentialAvailability } from '../Availability' export default function HomebrewCard({ name }) { const lowerCase = name.toLowerCase() return ( {(name) => ( <> } /> } /> )} ) }