diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-11-19 14:29:04 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-11-19 14:29:04 +0100 |
commit | d2f51aa66b50cd058d8b2beafd5da70c84a47d95 (patch) | |
tree | f549dfea80a543ed17fcb03b5553a83d3848acbb /src/web/js/components/time.react.js | |
parent | Fixed problem with version of GLIBC_PRIVATE not defined in file libc.so.6 wit... (diff) | |
parent | Updated Python runtime to 3.6.2 on Heroku. (diff) | |
download | newspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.tar.gz newspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.tar.bz2 newspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.zip |
Merge branch 'master' of github.com:JARR-aggregator/JARR
Diffstat (limited to 'src/web/js/components/time.react.js')
-rw-r--r-- | src/web/js/components/time.react.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/web/js/components/time.react.js b/src/web/js/components/time.react.js index c293e638..07e1fbdf 100644 --- a/src/web/js/components/time.react.js +++ b/src/web/js/components/time.react.js @@ -1,8 +1,10 @@ var React = require('react'); +var createReactClass = require('create-react-class'); +var PropTypes = require('prop-types'); -var JarrTime = React.createClass({ - propTypes: {stamp: React.PropTypes.string.isRequired, - text: React.PropTypes.string.isRequired}, +var JarrTime = createReactClass({ + propTypes: {stamp: PropTypes.string.isRequired, + text: PropTypes.string.isRequired}, render: function() { return (<time dateTime={this.props.text} title={this.props.text}> {this.props.stamp} |