UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

8 lines 293 B
import { ComponentProps, FC } from "react"; import { ListItemClickHandler } from "./types"; export type EbayListProps = ComponentProps<"div"> & { onButtonClick?: ListItemClickHandler; }; declare const EbayList: FC<EbayListProps>; export default EbayList; //# sourceMappingURL=list.d.ts.map