GoScrobble/web/node_modules/reactstrap/es/List.d.ts

13 lines
313 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface ListProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
tag?: React.ElementType;
cssModule?: CSSModule;
type?: string;
}
declare class List extends React.Component<ListProps> {}
export default List;