0.1.1 • Published 4 years ago

@rock-kit/ui-dialog v0.1.1

Weekly downloads
-
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 @rock-kit/ui-dialog

Usage

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

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