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