@real-system/portal-primitive
v0.0.24
Published
Portal primitive component for real system.
Downloads
40
Maintainers
Readme
Installation
# install peer dependencies
# npm
$ npm install react react-dom
# yarn
$ yarn add react react-dom
# install portal-primitive
# npm
$ npm install @real-system/portal-primitive
# yarn
$ yarn add @real-system/portal-primitive
Code Example
import { PortalPrimitive } from '@real-system/portal-primitive';
const MyComponent = () => (
<PortalPrimitive>Portal primitive content</PortalPrimitive>
);