index.js 278 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import Input from './Input'; import Group from './Group'; import Search from './Search'; import TextArea from './TextArea'; import Password from './Password'; Input.Group = Group; Input.Search = Search; Input.TextArea = TextArea; Input.Password = Password; export default Input;