App 上的基础组件现在是不会渲染的,也就是说下面的 View 是不会渲染到页面上的。 ```javascript class App extends React.Component { render() { return ( <View id="app"> {this.props.children} </View> ); } } ``` _Originally posted by @yesmeck in https://github.com/remaxjs/remax/issues/189#issuecomment-526794600_
Originally posted by @yesmeck in #189 (comment)