1.0.2 • Published 5 years ago
@chakra-xui/live-region v1.0.2
Live Regions
ARIA Live Regions are used to communicate important information to screen reader software.
Installation
yarn add @chakra-xui/live-regionImport components
import { LiveRegion, useLiveRegion } from "@chakra-xui/live-region"Usage
import { useLiveRegion } from "@chakra-xui/live-region"
function Example() {
  const region = useLiveRegion()
  return (
    <button
      onClick={() => {
        region.speak("Filtering categories was successful")
      }}
    >
      Click me
    </button>
  )
}1.0.2
5 years ago