Install and use the Mask
A popover positioned based on certain values
Install @reactour/popover (opens in a new tab)
npm i @reactour/popover
Usage
import { Popover } from '@reactour/popover'
function App() {
const sizes = {
bottom: 0,
left: 0,
}
return (
<>
{/* ... */}
<Popover sizes={sizes}>
</>
)
}