这是我的代码:
class Landing extends Component {
state = {
box: " width: 300px , height: 100px, border: 1px solid blue; ",
};
render() {
return <div className={this.state.box}>Hello</div>;
}
}
这个想法是“ Hello”应该放在一个盒子里。
相反,我得到的是一个没有框的网页,只是一个问候。
请帮助。
答案 0 :(得分:3)
将className
更改为style
,然后将box
变成真实对象。
class Landing extends Component {
state = {
box: {width: '300px', height: '100px', border: '1px solid blue'},
};
render() {
return <div style={this.state.box}>Hello</div>;
}
}