Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import React from 'react';
import { ShoppingListProps } from 'abstractions/ShoppingList';
import { defaultRenderShoppingListItem } from './renderProps';
import { ShoppingListCollapseState } from './state';
declare class ShoppingList extends React.Component<ShoppingListProps> {
static defaultProps: {
className: string;
renderShoppingListItem: typeof defaultRenderShoppingListItem;
};
shoppingListCollapseState: ShoppingListCollapseState;
render(): JSX.Element;
}
export { ShoppingList };
export default ShoppingList;