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