React 开发注意事项

引用自定义组件的时候,组件名称首字母大写

import CustomComponent from "./customComponent ";

render(){
    return (
        <CustomComponent></CustomComponent>
    )
}

猜你喜欢

转载自www.cnblogs.com/fws407296762/p/9594868.html