├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Forms ├── Button.js ├── Field.js ├── Form.js ├── Input.js ├── Section.js └── index.js ├── Steps ├── About.js ├── Confirm.js ├── Contact.js ├── Education.js └── Stepper.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── state.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Forms/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/Button.js -------------------------------------------------------------------------------- /src/Forms/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/Field.js -------------------------------------------------------------------------------- /src/Forms/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/Form.js -------------------------------------------------------------------------------- /src/Forms/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/Input.js -------------------------------------------------------------------------------- /src/Forms/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/Section.js -------------------------------------------------------------------------------- /src/Forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Forms/index.js -------------------------------------------------------------------------------- /src/Steps/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Steps/About.js -------------------------------------------------------------------------------- /src/Steps/Confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Steps/Confirm.js -------------------------------------------------------------------------------- /src/Steps/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Steps/Contact.js -------------------------------------------------------------------------------- /src/Steps/Education.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Steps/Education.js -------------------------------------------------------------------------------- /src/Steps/Stepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/Steps/Stepper.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarity-89/multistep-hook-form/HEAD/src/state.js --------------------------------------------------------------------------------