Sha256: 7d8f6beb58099ce6ad3706bd4980124183f591d9230b35dc4ae6f4a13762357d
Contents?: true
Size: 450 Bytes
Versions: 94
Compression:
Stored size: 450 Bytes
Contents
import React from 'react' import { Legend } from '../../' 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
94 entries across 94 versions & 1 rubygems