Sha256: 873b6afc0735ca8449a2e89886ff08c6297b33534b9632d874fac440d4ba89ce
Contents?: true
Size: 451 Bytes
Versions: 44
Compression:
Stored size: 451 Bytes
Contents
import React from 'react' import Legend from '../_legend' const products = ['Windows', 'Doors', 'Roofing', 'Siding', 'Solar Gutters', 'Insulation', 'Other'] const LegendDefault = (props) => ( <div> { products.map((product, i) => ( <Legend color={`data_${i + 1}`} key={`legend_${i + 1}`} text={product} {...props} /> )) } </div> ) export default LegendDefault
Version data entries
44 entries across 44 versions & 1 rubygems