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