import React from 'react' import { useTranslation } from 'react-i18next' import { NowIcon } from '../Icons' import { Card, Repeater, DedicatedAvailability } from '../Cards' export default function NowCard({ query }) { const { t } = useTranslation() const lowerCase = query.toLowerCase() const names = [lowerCase] return ( {(name) => ( } /> )} ) }