Sha256: 9735c99c321769bb4978058448cdf88665471eae63891c84838e38ef0005beee
Contents?: true
Size: 454 Bytes
Versions: 1875
Compression:
Stored size: 454 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
1,875 entries across 1,875 versions & 2 rubygems