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