2016-03-31 17:46:35 +08:00
|
|
|
import Input from './Input';
|
|
|
|
import Group from './Group';
|
2016-11-24 14:03:57 +08:00
|
|
|
import Search from './Search';
|
2017-05-22 14:44:58 +08:00
|
|
|
import TextArea from './TextArea';
|
2018-11-29 10:03:16 +08:00
|
|
|
import Password from './Password';
|
2015-10-09 13:53:04 +08:00
|
|
|
|
2017-09-25 22:14:49 +08:00
|
|
|
export { InputProps } from './Input';
|
|
|
|
export { GroupProps } from './Group';
|
|
|
|
export { SearchProps } from './Search';
|
|
|
|
export { TextAreaProps } from './TextArea';
|
2018-11-29 10:03:16 +08:00
|
|
|
export { PasswordProps } from './Password';
|
2017-09-25 22:14:49 +08:00
|
|
|
|
2016-03-31 17:46:35 +08:00
|
|
|
Input.Group = Group;
|
2016-11-24 14:03:57 +08:00
|
|
|
Input.Search = Search;
|
2017-05-22 14:44:58 +08:00
|
|
|
Input.TextArea = TextArea;
|
2018-11-29 10:03:16 +08:00
|
|
|
Input.Password = Password;
|
2016-03-31 17:46:35 +08:00
|
|
|
export default Input;
|