首页 > 代码库 > React

React




技术分享
 {this.isToggleOn ? ‘ON‘ : ‘OFF‘}

      <button onClick={this.handleClick}>
        b
      </button>


ReactDOM.render(
  <Toggle2 />,
  document.getElementById(‘root1‘)
);
https://facebook.github.io/react/

yarn add create-react-app
技术分享
 安装,npm那个似乎因为旧版本的被别的项目引用,无法卸载


npm install -g create-react-app
技术分享
create-react-app
技术分享
 安装好了

create-react-app First
技术分享
 
yarn

运行本地服务
npm start
虽然提示的是
http://C:\Windows\System32\drivers\etc:3000/
但其实应该访问

http://127.0.0.1:3000/

使用 Facebook 的 create-react-app 快速构建 React 开发环境
http://www.tuicool.com/articles/Qn6ZnqU


工具

在线编辑器,IDE

https://codepen.io/ericnakagawa/pen/vXpjwZ?editors=0010


null


React