From 4c50a8676b41fdcc5d46e9608da1c9ca9ffb86d8 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 20 Dec 2017 13:57:15 +0300 Subject: update to React 16 --- vnext/src/app.js | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'vnext/src/app.js') diff --git a/vnext/src/app.js b/vnext/src/app.js index 52f35076..7971c71f 100644 --- a/vnext/src/app.js +++ b/vnext/src/app.js @@ -1,23 +1,21 @@ import "whatwg-fetch" -import React, {PropTypes} from "react" +import React from "react" +import PropTypes from "prop-types" import ReactDOM from "react-dom" import Message from "./components/Message.jsx" -const Page = React.createClass({ - getInitialState() { - return {msgs: [], loading: false} - }, - propTypes: { - msgs: PropTypes.array, - source: PropTypes.string.isRequired - }, +class Page extends React.Component { + constructor(props) { + super(props) + this.state = {msgs: [], loading: false} + } render() { var nodes = this.state.msgs.map(msg => { return () }); return (
{nodes}
) - }, + } componentDidMount() { fetch(this.props.source) .then(response => { @@ -29,6 +27,11 @@ const Page = React.createClass({ console.log(ex) }); } -}); +}; + +Page.propTypes = { + msgs: PropTypes.array, + source: PropTypes.string.isRequired +} -ReactDOM.render(, document.getElementById("content")); \ No newline at end of file +ReactDOM.render(, document.getElementById("content")); -- cgit v1.2.3