Repository URL to install this package:
|
Version:
3.0.1 ▾
|
import React from 'react';
import { defaultRenderShoppingListItem } from './renderProps';
import { ShoppingListProps } from './typings';
declare class ShoppingList extends React.Component<ShoppingListProps> {
static defaultProps: {
className: string;
renderShoppingListItem: typeof defaultRenderShoppingListItem;
};
render(): false | React.ReactNode[];
}
export { ShoppingList };
export default ShoppingList;