├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src └── formik-persist.tsx ├── test └── formik-persist.test.tsx ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/formik-persist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/src/formik-persist.tsx -------------------------------------------------------------------------------- /test/formik-persist.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/test/formik-persist.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/formik-persist/HEAD/tslint.json --------------------------------------------------------------------------------