├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src ├── App.css ├── App.js ├── Nav.js ├── index.html ├── index.js └── thumb1.jpg └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/package.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .wow { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/src/Nav.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/src/index.js -------------------------------------------------------------------------------- /src/thumb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/src/thumb1.jpg -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developedbyed/simple-react-setup/HEAD/webpack.config.js --------------------------------------------------------------------------------