Skip to main content

Installation

Install the package using your package manager of choice.

yarn add react-dialog-async

Wrap your app with DialogProvider

Add the provider DialogProvider to the root of your app, and render a DialogOutlet

import { DialogProvider, DialogOutlet } from 'react-dialog-async';

export default function Layout() {
return (
<DialogProvider>
<App />
<DialogOutlet/>
</DialogProvider>
);
}
tip

Not sure where to put the provider? Check out some of the examples