@instructure/ui-portal
v10.10.0
Published
A UI component library made by Instructure Inc.
Downloads
60,046
Maintainers
Keywords
Readme
category: packages
ui-portal
Components
The ui-portal
package contains the following:
Installation
npm install @instructure/ui-portal
Usage
import React from 'react'
import { Portal } from '@instructure/ui-portal'
const MyPortal = () => {
return (
<Portal open>
<Text>Hello from Portal</Text>
</Portal>
)
}