UNPKG

react-loop-z

Version:

React utility for loops and conditional rendering. Simple, clean, and flexible.

8 lines (7 loc) 259 B
import React from "react"; import { ILoopProps } from "./types"; export interface ISetLoopProps extends ILoopProps { of: Set<any>; render?: (item: any, index: number) => React.ReactNode; } export declare const SetLoop: React.FC<ISetLoopProps>;