React学习总结

创建react应用

  1. npm install create-react-app -g

html写在了哪个js文件中,就在哪个js文件中引入css。

react中引用静态资源也要使用模块化的方式,比如是不行的,要用import abc from '/img/a.jpg';

react组件中的方法不能直接调用this.state,必须绑定this后才可以

image

你可能感兴趣的:(React学习总结)