8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { withInstall } from '../utils';
|
|
import _List, { ListProps } from './List';
|
|
|
|
export const List = withInstall(_List);
|
|
export default List;
|
|
export type { ListProps };
|
|
export type { ListInstance, ListDirection } from './types';
|