import React from 'react' import { BarChart, Bar, Cell } from 'recharts'; function FunnelGraphSmall({ data }) { return (
{ data.map((entry, index) => ( )) }
) } export default FunnelGraphSmall