import { IFunnel } from 'App/mstore/types/funnel'; import React from 'react'; import { Icon } from 'UI'; interface Props { funnel: IFunnel } function FunnelItem(props: Props) { const { funnel } = props; return (
{funnel.name}
{funnel.name}
{funnel.name}
); } export default FunnelItem;