UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

9 lines (8 loc) 250 B
import React from 'react'; export interface VirtualRowProps { index: number; data: Record<string, any>; style?: React.CSSProperties; } declare const VirtualRow: ({ index, data, style }: VirtualRowProps) => any; export default VirtualRow;