Sha256: 006008bc0a44a49b5e4cfa2b6633c78d3412367abc69d705619fa2e5cbc142ea
Contents?: true
Size: 664 Bytes
Versions: 97
Compression:
Stored size: 664 Bytes
Contents
import React from 'react' import { Date as FormattedDate } from '../..' const DateVariants = (props) => { return ( <div> <FormattedDate value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showIcon value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showDayOfWeek value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showDayOfWeek showIcon value="1995-12-25" {...props} /> </div> ) } export default DateVariants
Version data entries
97 entries across 97 versions & 1 rubygems