UNPKG

react-loop-z

Version:

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

8 lines (7 loc) 237 B
import React from "react"; import { ILoopProps } from "./types"; export interface IItemRenderProps extends ILoopProps { item: React.ReactNode; } declare const ItemRender: React.FC<IItemRenderProps>; export default ItemRender;