Last active
May 30, 2019 05:02
-
-
Save faustoct1/6f04a5086d218d6639de372c58189346 to your computer and use it in GitHub Desktop.
using date component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import Date from require('./components/Date.js') | |
export default class App extends Component { | |
initAsync = async (that) => { | |
} | |
constructor(props) { | |
super(props) | |
} | |
render = () => { | |
return (<Date date={'2019-05-11 16:32:57 -0300'}/>) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment