一、react开发者工具(谷歌插件)1、安装2、使用二、组件分类三、函数式组件定义四、类的基础知识 一、react开发者工具(谷歌插件) 1、安装在线-去谷歌商店搜即可(Facebook开发的)离线- 如下: 2、使用 二、组件分类 三、函数式组件定义function Demo(){ return <h2>我是函数组件,使用简单组件定义</h2> }ReactDOM.render(<Demo/>,document.getElementById('test')) 四、类的基础知识