├── .babelrc ├── .gitignore ├── README.md ├── client ├── components │ └── App.jsx ├── index.html └── index.js ├── package.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/README.md -------------------------------------------------------------------------------- /client/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/client/components/App.jsx -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/client/index.html -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/client/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/hello-world-react/HEAD/yarn.lock --------------------------------------------------------------------------------