├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── SignUpForm.css │ ├── SignUpForm.js │ ├── const.js │ ├── getValidationSchema-spected.js │ ├── getValidationSchema-yup.js │ ├── validate-spected.js │ └── validate-yup.js ├── index.css ├── index.js ├── logo.svg └── registerServiceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/SignUpForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/SignUpForm.css -------------------------------------------------------------------------------- /src/components/SignUpForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/SignUpForm.js -------------------------------------------------------------------------------- /src/components/const.js: -------------------------------------------------------------------------------- 1 | export const MIN_PASSWORD_LENGTH = 6 -------------------------------------------------------------------------------- /src/components/getValidationSchema-spected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/getValidationSchema-spected.js -------------------------------------------------------------------------------- /src/components/getValidationSchema-yup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/getValidationSchema-yup.js -------------------------------------------------------------------------------- /src/components/validate-spected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/validate-spected.js -------------------------------------------------------------------------------- /src/components/validate-yup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/components/validate-yup.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakubkoci/react-form-validation/HEAD/yarn.lock --------------------------------------------------------------------------------