Sha256: b58c15b21c2d8d74c4fff154060a58ae5f8e3a0f856f8a97b731724af81a4437
Contents?: true
Size: 1.57 KB
Versions: 27
Compression:
Stored size: 1.57 KB
Contents
import React from 'react' import Timestamp from '../_timestamp.jsx' const TimestampUpdatedAlign = (props) => { return ( <div> <Timestamp align="left" showUser="true" text="Maricris Nonato" timestamp={new Date().getTime()} variant="elapsed" {...props} /> <br /> <Timestamp align="left" showUser="false" timestamp={new Date((new Date()).getFullYear(), new Date().getMonth(), new Date().getDate()).getTime()} variant="elapsed" {...props} /> <br /> <br /> <Timestamp align="center" showUser="true" text="Maricris Nonato" timestamp={new Date().getTime()} variant="elapsed" {...props} /> <br /> <Timestamp align="center" showUser="false" timestamp={new Date((new Date()).getFullYear(), new Date().getMonth(), new Date().getDate()).getTime()} variant="elapsed" {...props} /> <br /> <br /> <Timestamp align="right" showUser="true" text="Maricris Nonato" timestamp={new Date().getTime()} variant="elapsed" {...props} /> <br /> <Timestamp align="right" showUser="false" timestamp={new Date((new Date()).getFullYear(), new Date().getMonth(), new Date().getDate()).getTime()} variant="elapsed" {...props} /> </div> ) } export default TimestampUpdatedAlign
Version data entries
27 entries across 27 versions & 1 rubygems