Accessible React Modal Dialog.
npm install @reach/dialog !MIT license
An accessible dialog or modal window.
``jsx
import { Dialog } from "@reach/dialog";
import "@reach/dialog/styles.css";
function Example(props) {
const [showDialog, setShowDialog] = React.useState(false);
const open = () => setShowDialog(true);
const close = () => setShowDialog(false);
return (