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 / molecules / List / renderProps.d.ts
Size: Mime:
import { ListProps } from './typings';
/**
 *
 * @param item each item from map function
 * @param props list props whichc shared through the list function
 */
declare function renderItem(item: ListProps, props?: ListProps): JSX.Element;
/**
 * rendering the list
 */
declare function renderList(props: ListProps): JSX.Element[];
/**
 * rendering the wrapper
 */
declare function renderWrapper(props: ListProps): JSX.Element;
export { renderList, renderItem, renderWrapper };