├── .gitignore ├── README.md ├── gulpfile.js ├── package.json └── src ├── App.js ├── components ├── Child.js └── Parent.js ├── index.html └── styles └── main.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/src/components/Child.js -------------------------------------------------------------------------------- /src/components/Parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/src/components/Parent.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbobron/reactStarterKit/HEAD/src/index.html -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------