aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/components/time.react.js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-09-26 23:00:45 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-09-26 23:00:45 +0200
commitf509ad70664c360920bfd1bd9b302e4eeb3043df (patch)
tree383dcd3813913ac72af8be58549440da50b4e234 /src/web/js/components/time.react.js
parentrenew certificate (diff)
downloadnewspipe-f509ad70664c360920bfd1bd9b302e4eeb3043df.tar.gz
newspipe-f509ad70664c360920bfd1bd9b302e4eeb3043df.tar.bz2
newspipe-f509ad70664c360920bfd1bd9b302e4eeb3043df.zip
Upgrade to React v16.0.0.
Diffstat (limited to 'src/web/js/components/time.react.js')
-rw-r--r--src/web/js/components/time.react.js8
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}
bgstack15