soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
11 lines (10 loc) • 338 B
TypeScript
/// <reference types="react" />
/**
* Wrapper component of `createPortal()`
* Just like https://vuejs.org/guide/built-ins/teleport.html
*/
export declare function Portal({ children, container, key, }: {
children?: React.ReactNode;
container?: Element | DocumentFragment;
key?: string | null;
}): import("react").ReactNode;