import { FC } from 'react' import { ItemServiceType } from '../pages/service/types/ServiecTypes' type Props = { item: ItemServiceType, } const ServiceSection: FC = (props: Props) => { const { item } = props return (
{item.name}
{item.name}
{item.title}
) } export default ServiceSection