ant-design/components/input/index.tsx

18 lines
485 B
TypeScript
Raw Normal View History

2016-03-31 17:46:35 +08:00
import Input from './Input';
import Group from './Group';
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
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';
2016-03-31 17:46:35 +08:00
Input.Group = Group;
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;