import { useCourier, CourierToast } from "@trycourier/courier-react";
export default function App() {
const courier = useCourier();
useEffect(() => {
// Authenticate the user
courier.shared.signIn({ userId, jwt });
}, []);
// Add the Toast component
return <CourierToast />;
}