ant-design/components/input/index.tsx

10 lines
218 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';
2015-10-09 13:53:04 +08:00
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;
2016-03-31 17:46:35 +08:00
export default Input;