99.10.0 • Published 5 years ago
@temporg/ui-portal v99.10.0
category: packages
ui-portal
Components
The ui-portal package contains the following:
Installation
yarn add @temporg/ui-portalUsage
import React from 'react'
import { Portal } from '@temporg/ui-portal'
const MyPortal = () => {
return (
<Portal open>
<Text>Hello from Portal</Text>
</Portal>
)
}