UNPKG

@plurid/plurid-react

Version:

React implementation of Plurid to explore the web in three dimensions

16 lines (15 loc) 294 B
import React from 'react'; export interface PortalProperties { elementID: string; rootID: string; children?: React.ReactNode; } /** * @example * <Portal> * <p>elements</p> * </Portal> * */ declare const PluridPortal: React.FC<PortalProperties>; export default PluridPortal;