99.10.0 • Published 4 years ago

@temporg/ui-portal v99.10.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-portal

npm  build-status  MIT License  Code of Conduct

Components

The ui-portal package contains the following:

Installation

yarn add @temporg/ui-portal

Usage

import React from 'react'
import { Portal } from '@temporg/ui-portal'

const MyPortal = () => {
  return (
    <Portal open>
      <Text>Hello from Portal</Text>
    </Portal>
  )
}