UNPKG

shineout

Version:

Shein 前端组件库

11 lines (10 loc) 261 B
import { Component } from 'react'; import { ListProps } from './Props'; declare class List extends Component<ListProps> { static displayName: string; static defaultProps: { show: boolean; }; render(): JSX.Element; } export default List;