├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── README.assets ├── asset_1.png ├── asset_2.png ├── asset_3.png ├── asset_4.png ├── asset_5.png ├── asset_6.png ├── asset_7.png ├── asset_8.png └── asset_9.png ├── README.md ├── package.json ├── public └── index.html ├── src ├── App.jsx ├── index.jsx └── styles │ └── index.css └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .eslintrc.js 2 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.assets/asset_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_1.png -------------------------------------------------------------------------------- /README.assets/asset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_2.png -------------------------------------------------------------------------------- /README.assets/asset_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_3.png -------------------------------------------------------------------------------- /README.assets/asset_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_4.png -------------------------------------------------------------------------------- /README.assets/asset_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_5.png -------------------------------------------------------------------------------- /README.assets/asset_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_6.png -------------------------------------------------------------------------------- /README.assets/asset_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_7.png -------------------------------------------------------------------------------- /README.assets/asset_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_8.png -------------------------------------------------------------------------------- /README.assets/asset_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.assets/asset_9.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | function App() { 2 | return

hello world

; 3 | } 4 | 5 | export default App; 6 | -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- 1 | p { 2 | background-color: cornflowerblue; 3 | } 4 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingong/react-boilerplate-session/HEAD/webpack.config.js --------------------------------------------------------------------------------