UNPKG

@rakhimgaliyev/react-bottom-sheet

Version:

Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.

14 lines (13 loc) 268 B
import React from 'react'; declare type PropsType = { id: string; children: React.ReactNode; }; /** * @example * <Portal id="modal"> * <p>Thinking with portals</p> * </Portal> */ export declare const Portal: React.FC<PropsType>; export {};