Skip to content

Instantly share code, notes, and snippets.

@MacRusher
Last active June 19, 2017 13:14
Show Gist options
  • Save MacRusher/8f127540618b67df14ae99f571f0ecde to your computer and use it in GitHub Desktop.
Save MacRusher/8f127540618b67df14ae99f571f0ecde to your computer and use it in GitHub Desktop.
uniforms inheritance
import BaseForm from './BaseForm';
import QuickForm from './QuickForm';
import ValidatedForm from './ValidatedForm';
const ValidatedQuickForm = ValidatedForm.Validated(QuickForm.Quick(BaseForm));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment