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