Sha256: e8ff5c8f665fb5d13001b8df2ed0b26d8f12d907630bd8316d8340045969bdcc
Contents?: true
Size: 833 Bytes
Versions: 94
Compression:
Stored size: 833 Bytes
Contents
import React from 'react' import { DashboardValue } from '../../' const DashboardValueDefault = (props) => { return ( <div> <DashboardValue statChange={{ change: 'decrease', value: '26.1' }} statLabel="Decreased Value" statValue={{ value: '1,428', unit: 'appts' }} {...props} /> <br /> <br /> <DashboardValue statChange={{ change: 'increase', value: 56.1 }} statLabel="Increased Value" statValue={{ value: '938', unit: 'homes' }} {...props} /> <br /> <br /> <DashboardValue statChange={{ value: 86 }} statLabel="Neutral Value" statValue={{ value: '261', unit: 'windows' }} {...props} /> </div> ) } export default DashboardValueDefault
Version data entries
94 entries across 94 versions & 1 rubygems