import { FC } from 'react' import { Link } from 'react-router-dom' import { Pages } from '../config/Pages' import { ArrowLeft } from 'iconsax-react' import Button from './Button' import { useTranslation } from 'react-i18next' import { ItemServiceType } from '../pages/service/types/ServiecTypes' type Props = { item: ItemServiceType } const ServiceItem: FC = (props: Props) => { const { t } = useTranslation('global') const { item } = props return (
{item.name}
{item.name}
{item.description}

) } export default ServiceItem