Sha256: 67cf66e48f3c1c0530cd3360a511c764db4542fa7471a02b9769ca6903182d06
Contents?: true
Size: 1016 Bytes
Versions: 27
Compression:
Stored size: 1016 Bytes
Contents
import React from 'react' import Timestamp from '../_timestamp.jsx' const TimestampUpdated = (props) => { return ( <div> <Timestamp showUser="true" text="Maricris Nonato" timestamp={new Date().getTime()} variant="updated" {...props} /> <br /> <Timestamp showUser="false" timestamp={new Date().getTime()} variant="updated" {...props} /> <br /> <br /> <Timestamp showTimezone="true" showUser="true" text="Maricris Nonato" timestamp={new Date().getTime()} timezone="America/New_York" variant="updated" {...props} /> <br /> <Timestamp showTimezone="true" showUser="false" timestamp={new Date().getTime()} timezone="America/New_York" variant="updated" {...props} /> </div> ) } export default TimestampUpdated
Version data entries
27 entries across 27 versions & 1 rubygems