Your component must start with a capital letter I
instead of small letter i
otherwise TypeScript would yell. Changing item
to Item
should fix it:
var Item = React.createClass({
render: function() {
return (<div>hello world</div>)
}
});
export default class ItemList extends Component<any, any> {
render() {
return (<Item />)
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…