UNPKG
aot-formio-export
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
0.3.1
AOT Formio Export
github.com/AOT-Technologies/formio-export
AOT-Technologies/formio-export
aot-formio-export
/
src
/
components
/
formio
/
email
/
index.js
10 lines
(7 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
TextFieldComponent
from
'../textfield'
;
class
EmailComponent
extends
TextFieldComponent
{
constructor
(
component, data, options
) {
super
(component, data, options); } }
export
default
EmailComponent
;