99.10.0 • Published 4 years ago

@temporg/ui-dialog v99.10.0

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

category: packages

ui-dialog

npm  build-status  MIT License  Code of Conduct

A utility component for managing keyboard accessibility and screen reader behavior.

Components

The ui-dialog package contains the following:

Installation

yarn add @temporg/ui-dialog

Usage

import React from 'react'
import { Dialog } from '@temporg/ui-dialog'

const MyDialog = () => {
  return (
    <Dialog open={this.state.open}>
      Hello world
    </Dialog>
  )
}