JSPM

@instructure/ui-dialog

7.4.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2784
  • Score
    100M100P100Q150402F
  • License MIT

A utility component for managing keyboard accessibility and screen reader behavior

Package Exports

  • @instructure/ui-dialog

Readme


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 @instructure/ui-dialog

Usage

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

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