mirror of https://github.com/opensumi/core
![]() |
||
---|---|---|
.. | ||
__mocks__ | ||
__tests__ | ||
src | ||
README.md | ||
package.json |
README.md
@opensumi/ide-core-browser
Usage
Utils
createOverlay
import { createOverlay, destroyAllOverlays } from '@opensumi/ide-core-browser/lib/utils/create-overlay';
const overlayInstance = createOverlay(<h1 style={{color: 'white'}}>hello world</h1>);
overlayInstance.update(<h2 style={{color: 'white'}}>hello world</h2>);
overlayInstance.destroy();
destroyAllOverlays();