├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.js ├── App.test.js ├── components │ ├── Login.js │ └── Profile.js ├── index.css └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/components/Login.js -------------------------------------------------------------------------------- /src/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/components/Profile.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/academind/react-16.6-new-features/HEAD/yarn.lock --------------------------------------------------------------------------------