不变违规:AppBar.render():必须返回有效的ReactComponent

时间:2015-12-22 10:49:51

标签: reactjs material-ui

我使用下面提到的代码在我的React组件中使用了AppBar,它抛出的错误就像

不变违规:AppBar.render():必须返回有效的ReactComponent。

<html>
<head>
</head>
<body>
<a href="http://ns.nl" target="_self"><img src="026.png"/></a>
</body>
</html>

和Masterpage.js包含

var React=require('react');
var DocumentTitle=require('react-document-title');
var Masterpage=require('./pages/Masterpage');
var App=React.createClass({

 render:function()
 {
   return(
     <DocumentTitle title='Application Tracking System'>
     <div className='App'>
        <Masterpage />
        <hr />
        {this.props.children}
      </div>
     </DocumentTitle>
   );
 }

});
module.exports=App;

1 个答案:

答案 0 :(得分:0)

我找到了答案,因为反应0.13.3版本它抛出错误我已更新反应0.14.3然后它工作正常。