ant-design/components/input/index.tsx
2017-07-03 17:26:29 +08:00

10 lines
218 B
TypeScript

import Input from './Input';
import Group from './Group';
import Search from './Search';
import TextArea from './TextArea';
Input.Group = Group;
Input.Search = Search;
Input.TextArea = TextArea;
export default Input;