├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── ComparisonTable.jsx ├── Forms.jsx ├── UI-kit │ ├── Button.jsx │ ├── Select.jsx │ ├── TextField.jsx │ └── index.js ├── formik │ ├── FormWithDynamicInput.jsx │ ├── FormWithFetch.jsx │ ├── FormWithYup.jsx │ ├── SimpleForm.jsx │ ├── Wizard.jsx │ └── WizardForm.jsx ├── react-final-form │ ├── FormWithDynamicInput.jsx │ ├── FormWithErrorFocus.jsx │ ├── FormWithFetch.jsx │ ├── SimpleForm.jsx │ ├── Wizard.jsx │ └── WizardForm.jsx ├── styles │ └── index.js └── syntax-highlight │ ├── SyntaxHighligh.jsx │ ├── formik │ ├── formWithDynamicInput.js │ ├── formWithFetch.js │ ├── formWithYup.js │ ├── simpleForm.js │ └── wizardForm.js │ └── react-final-form │ ├── formWithDynamicInput.js │ ├── formWithErrorFocus.js │ ├── formWithFetch.js │ ├── simpleForm.js │ └── wizardForm.js ├── constants.js ├── formik.png ├── github-logo.svg ├── hooks ├── useCountries.js └── useRegions.js ├── index.css ├── index.js ├── logo.svg ├── react-final-form.png ├── serviceWorker.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/ComparisonTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/ComparisonTable.jsx -------------------------------------------------------------------------------- /src/components/Forms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/Forms.jsx -------------------------------------------------------------------------------- /src/components/UI-kit/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/UI-kit/Button.jsx -------------------------------------------------------------------------------- /src/components/UI-kit/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/UI-kit/Select.jsx -------------------------------------------------------------------------------- /src/components/UI-kit/TextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/UI-kit/TextField.jsx -------------------------------------------------------------------------------- /src/components/UI-kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/UI-kit/index.js -------------------------------------------------------------------------------- /src/components/formik/FormWithDynamicInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/FormWithDynamicInput.jsx -------------------------------------------------------------------------------- /src/components/formik/FormWithFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/FormWithFetch.jsx -------------------------------------------------------------------------------- /src/components/formik/FormWithYup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/FormWithYup.jsx -------------------------------------------------------------------------------- /src/components/formik/SimpleForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/SimpleForm.jsx -------------------------------------------------------------------------------- /src/components/formik/Wizard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/Wizard.jsx -------------------------------------------------------------------------------- /src/components/formik/WizardForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/formik/WizardForm.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/FormWithDynamicInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/FormWithDynamicInput.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/FormWithErrorFocus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/FormWithErrorFocus.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/FormWithFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/FormWithFetch.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/SimpleForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/SimpleForm.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/Wizard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/Wizard.jsx -------------------------------------------------------------------------------- /src/components/react-final-form/WizardForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/react-final-form/WizardForm.jsx -------------------------------------------------------------------------------- /src/components/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/styles/index.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/SyntaxHighligh.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/SyntaxHighligh.jsx -------------------------------------------------------------------------------- /src/components/syntax-highlight/formik/formWithDynamicInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/formik/formWithDynamicInput.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/formik/formWithFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/formik/formWithFetch.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/formik/formWithYup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/formik/formWithYup.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/formik/simpleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/formik/simpleForm.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/formik/wizardForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/formik/wizardForm.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/react-final-form/formWithDynamicInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/react-final-form/formWithDynamicInput.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/react-final-form/formWithErrorFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/react-final-form/formWithErrorFocus.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/react-final-form/formWithFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/react-final-form/formWithFetch.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/react-final-form/simpleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/react-final-form/simpleForm.js -------------------------------------------------------------------------------- /src/components/syntax-highlight/react-final-form/wizardForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/components/syntax-highlight/react-final-form/wizardForm.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const ROOT_API = "https://location-api-hoss.herokuapp.com/"; 2 | -------------------------------------------------------------------------------- /src/formik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/formik.png -------------------------------------------------------------------------------- /src/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/github-logo.svg -------------------------------------------------------------------------------- /src/hooks/useCountries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/hooks/useCountries.js -------------------------------------------------------------------------------- /src/hooks/useRegions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/hooks/useRegions.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-final-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/react-final-form.png -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseintalebi/formik-vs-react-final-form/HEAD/src/utils.js --------------------------------------------------------------------------------