UNPKG

test-nut-ui

Version:

<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>

13 lines (12 loc) 374 B
import React, { ReactNode } from 'react'; interface CellInfosProps { name: string; extra: ReactNode; description: ReactNode; } export interface CellCardProps { list: CellInfosProps[]; onClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>, index: number) => void; } export declare const CellCard: (props: CellCardProps) => JSX.Element; export {};