Sha256: 336cc5bb1b252900bd763b4daa18c4176bc2227a9bb65c5a40f7a14a7cd98784
Contents?: true
Size: 599 Bytes
Versions: 547
Compression:
Stored size: 599 Bytes
Contents
import React from 'react' import { Date as FormattedDate } from '../..' const DateAlignment = (props) => { return ( <div> <FormattedDate dayOfWeek icon value={new Date('25 Dec 1995')} {...props} /> <br /> <FormattedDate alignment="center" dayOfWeek icon value={new Date('25 Dec 2020')} {...props} /> <br /> <FormattedDate alignment="right" value={new Date()} {...props} /> </div> ) } export default DateAlignment
Version data entries
547 entries across 547 versions & 2 rubygems