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
/
editgrid
/
index.js
11 lines
(8 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
BaseComponent
from
'../base'
;
class
EditGridComponent
extends
BaseComponent
{
constructor
(
component, data, options
) {
super
(component, data, options);
console
.
log
(
this
); } }
export
default
EditGridComponent
;