File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,10 @@ module.exports = {
56
56
get Image ( ) {
57
57
return require ( './image' ) . default ;
58
58
} ,
59
-
59
+
60
+ get BaseInput ( ) {
61
+ return require ( './inputs' ) . BaseInput ;
62
+ } ,
60
63
get TextArea ( ) {
61
64
return require ( './inputs' ) . TextArea ;
62
65
} ,
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
+ get BaseInput ( ) {
3
+ return require ( './BaseInput' ) . default ;
4
+ } ,
2
5
get TextArea ( ) {
3
6
return require ( './TextArea' ) . default ;
4
7
} ,
Original file line number Diff line number Diff line change @@ -57,6 +57,9 @@ module.exports = {
57
57
get Image ( ) {
58
58
return require ( './components' ) . Image ;
59
59
} ,
60
+ get BaseInput ( ) {
61
+ return require ( './components' ) . BaseInput ;
62
+ } ,
60
63
get TextArea ( ) {
61
64
return require ( './components' ) . TextArea ;
62
65
} ,
You can’t perform that action at this time.
0 commit comments