Last active
June 19, 2017 13:14
-
-
Save MacRusher/8f127540618b67df14ae99f571f0ecde to your computer and use it in GitHub Desktop.
uniforms inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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