渲染我的组件后代码笔上没有输出
No output on the codepen after render my component
我正在使用 codepen.io 开始使用示例程序的 reactjs。下面是我的完整代码。不确定为什么 RenderDOM 没有正确渲染组件
HTML
<div class="person">
<h1> Raj </h1>
<p> Age 27 </p>
</div>
CSS
.person{
margin: 10px;
border: 1px solid #eee;
box-shadow: 0 2px 2px #ccc;
width: 200px;
padding: 20px;
}
JS(通天塔)
function Person()
{
return
(
<div className="person">
<h1> Nandhi </h1>
<p> Age 27 </p>
</div>
);
}
ReactDOM.render(<Person />,
document.querySelector('#p1'));
在此处附上屏幕截图:
问题出在Person
里面的return语句:
return
(
)
改为:
return (
)
JavaScript returns undefined
如果return
末尾没有任何内容说明表达式是运行下一行
我正在使用 codepen.io 开始使用示例程序的 reactjs。下面是我的完整代码。不确定为什么 RenderDOM 没有正确渲染组件
HTML
<div class="person">
<h1> Raj </h1>
<p> Age 27 </p>
</div>
CSS
.person{
margin: 10px;
border: 1px solid #eee;
box-shadow: 0 2px 2px #ccc;
width: 200px;
padding: 20px;
}
JS(通天塔)
function Person()
{
return
(
<div className="person">
<h1> Nandhi </h1>
<p> Age 27 </p>
</div>
);
}
ReactDOM.render(<Person />,
document.querySelector('#p1'));
在此处附上屏幕截图:
问题出在Person
里面的return语句:
return
(
)
改为:
return (
)
JavaScript returns undefined
如果return
末尾没有任何内容说明表达式是运行下一行