UNPKG
uniforms-react-semantic
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.2-1
0.0.1
Semantic React UI components for uniforms.
cesarve/uniforms
uniforms-react-semantic
/
src
/
ValidatedForm.js
10 lines
(6 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
ValidatedForm
from
'uniforms/ValidatedForm'
;
import
BaseForm
from
'./BaseForm'
;
const
Validated
= parent =>
class
extends
ValidatedForm
.
Validated
(parent) {
static
Validated
=
Validated
; };
export
default
Validated
(
BaseForm
);