所以,我有一个需要孩子的按钮组件。
...
class Button extends Component {
render() {
return <button>{this.props.children}</button>
}
}
Button.propTypes = {
children: PropTypes.node.isRequired
}
...
一切正常,但是当我在代码中自动完成Button-Component时,它总是以自动关闭<Button />
的形式自动完成,而由于需要孩子,我希望它像<Button></Button>
一样自动完成。
我使用PHPStorm,但是我想这是一个反应,因为对于需要像<React.Fragment>
这样的子代的其他组件,它会自动使用结束标记来完成。
我在这里想念什么?
感谢您的帮助。