UNPKG

react-data-grid

Version:

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

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