Installation
Install the package using your package manager of choice.
- yarn
- npm
- pnpm
- bun
yarn add react-dialog-async
npm install react-dialog-async
pnpm install react-dialog-async
bun 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