The notification inbox position is powered by the popper library. You can use placement
property on the FloatingNotificationInbox
component to position the notification inbox relative to the bell.
Reactimport React from 'react';
import MagicBell, { FloatingNotificationInbox } from '@magicbell/magicbell-react';
export default function Notifications() {
const distanceAlongRef = 16;
const distanceAwayFromRef = 32;
return (
{(props) => (
)}
);
}