├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json └── src ├── components └── counter │ ├── index.css │ └── index.jsx ├── index.jsx └── log.jsx /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/package.json -------------------------------------------------------------------------------- /src/components/counter/index.css: -------------------------------------------------------------------------------- 1 | span{ 2 | color: red; 3 | } -------------------------------------------------------------------------------- /src/components/counter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/src/components/counter/index.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/log.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/kbone-template-react/HEAD/src/log.jsx --------------------------------------------------------------------------------