UNPKG

@wulperstudio/cms

Version:
12 lines (11 loc) 504 B
import React from 'react'; import { BaseModel } from '../../Board.types'; import { EntryModel } from '../../../../components/Entry'; interface ItemsListModel<T extends BaseModel> { listId?: string; items?: Array<T> | undefined | null; children?: (item: T, idxs: number) => React.ReactNode; EntryProps?: EntryModel; } export declare const ItemsList: <T extends BaseModel>({ items, children, EntryProps, ...props }: ItemsListModel<T>) => import("react/jsx-runtime").JSX.Element; export {};