Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / ShoppingList / ShoppingList.d.ts
Size: Mime:
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;