Skip to content

Commit 6fea4e4

Browse files
Inbal-Tishethanshar
authored andcommitted
Exposing BaseInput component (#544)
* Exposing BaseInput component * require fix
1 parent bf37375 commit 6fea4e4

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/components/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ module.exports = {
5656
get Image() {
5757
return require('./image').default;
5858
},
59-
59+
60+
get BaseInput() {
61+
return require('./inputs').BaseInput;
62+
},
6063
get TextArea() {
6164
return require('./inputs').TextArea;
6265
},

src/components/inputs/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
module.exports = {
2+
get BaseInput() {
3+
return require('./BaseInput').default;
4+
},
25
get TextArea() {
36
return require('./TextArea').default;
47
},

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ module.exports = {
5757
get Image() {
5858
return require('./components').Image;
5959
},
60+
get BaseInput() {
61+
return require('./components').BaseInput;
62+
},
6063
get TextArea() {
6164
return require('./components').TextArea;
6265
},

0 commit comments

Comments
 (0)