我可能会以错误的方式解决这个问题,但是是否可以在 aa reactjs 组件中添加来自外部 CSS 文件的样式?我尝试以传统方式进行操作,但这似乎不起作用,您可以在外部 css 中引用类或 id 并在那里进行所有样式设置。
var ProfilePanel = React.createClass({
render: function() {
return (
<div>
<p class="profile-text">{this.props.text}{this.props.children}</p>
</div>
);
}
});
在我的 CSS 中,我有:
.profile-text{
font-size: 10px;
}