我的反应组件无效。我正在学习React并且和他完全一样但是当我关闭div时会出现问题,即使我的评论搞砸了。我会附上源代码,也许有人可以帮我解决问题..?
Router.Use()
答案 0 :(得分:0)
您有一个小错误,您必须拥有该组件的大写名称 变化
const app = function() {
return <div>Hi!</div>;
}
到
const App = function() {
return <div>Hi!</div>;
}
最后,渲染为
ReactDOM.render(<App />, document.querySelector('.container'));
更多详情 - https://reactjs.org/docs/jsx-in-depth.html#user-defined-components-must-be-capitalized