import React from 'react'; import { useTranslation } from 'react-i18next'; import { SiFirebase } from 'react-icons/si'; import { normalize } from '../../../util/text'; import { Card, DedicatedAvailability, Repeater } from '../core'; const FirebaseCard: React.FC<{ query: string }> = ({ query }) => { const { t } = useTranslation(); const normalizedQuery = normalize(query, { allowUnderscore: false, }); const lowerCase = normalizedQuery.toLowerCase(); const names = [lowerCase]; return ( {(name) => ( } /> )} ); }; export default FirebaseCard;