import React from 'react'; import { useTranslation } from 'react-i18next'; import { OcamlIcon } from '../../Icons'; import { Card, Repeater, DedicatedAvailability } from '../core'; const OcamlCard: React.FC<{ query: string }> = ({ query }) => { const { t } = useTranslation(); const lowerCase = query.toLowerCase(); const names = [lowerCase]; return ( {(name) => ( } /> )} ); }; export default OcamlCard;