UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

8 lines (7 loc) 203 B
import React from 'react'; interface Props { children: React.ReactNode; target: Element; } export default function EditorPortal({ target, children }: Props): React.ReactPortal | null; export {};