JSPM

@instructure/ui-portal

7.3.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12273
  • Score
    100M100P100Q140940F
  • License MIT

A UI component library made by Instructure Inc.

Package Exports

  • @instructure/ui-portal

Readme


category: packages

ui-portal

npm  build-status  MIT License  Code of Conduct

Components

The ui-portal package contains the following:

Installation

yarn add @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>
  )
}