Skip to content

Instantly share code, notes, and snippets.

@edemkumodzi
Created October 29, 2016 21:43
Show Gist options
  • Save edemkumodzi/62691fb886e924126d551994638f2dda to your computer and use it in GitHub Desktop.
Save edemkumodzi/62691fb886e924126d551994638f2dda to your computer and use it in GitHub Desktop.
import React, {Component} from 'react';
import Moment from 'moment';
class Date extends Component {
render() {
return (
<div>
<h1>{Moment().format('dddd')}</h1>
<p>{Moment().format('LL')}</p>
</div>
);
}
}
export default Date;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment