Skip to content

Instantly share code, notes, and snippets.

View Tyratox's full-sized avatar
😜
Doing stuff

Nico Hauser Tyratox

😜
Doing stuff
View GitHub Profile
@jaredpalmer
jaredpalmer / Formik-Autosave.jsx
Last active December 29, 2022 01:22
Formik-Autosave
import React from 'react';
import PropTypes from 'prop-types'
import debounce from 'lodash.debounce' // or whatevs
import isEqual from 'lodash.isEqual'
class AutoSave extends React.Component {
static contextTypes = {
formik: PropTypes.object
}