├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── Old.js ├── data ├── survey_1.json ├── survey_2.json └── survey_3.json ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js └── survey ├── component.js ├── hooks.js ├── index.js ├── inputs.js └── validators.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/Old.js -------------------------------------------------------------------------------- /src/data/survey_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/data/survey_1.json -------------------------------------------------------------------------------- /src/data/survey_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/data/survey_2.json -------------------------------------------------------------------------------- /src/data/survey_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/data/survey_3.json -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/survey/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/survey/component.js -------------------------------------------------------------------------------- /src/survey/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/survey/hooks.js -------------------------------------------------------------------------------- /src/survey/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/survey/index.js -------------------------------------------------------------------------------- /src/survey/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/survey/inputs.js -------------------------------------------------------------------------------- /src/survey/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Survey-with-Reactjs/HEAD/src/survey/validators.js --------------------------------------------------------------------------------