@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
15 lines (14 loc) • 407 B
TypeScript
import { IRemoteConfig } from '@magicbell/react-headless';
import React from 'react';
interface Props {
config: IRemoteConfig;
}
/**
* Component that renders the web push subscription page in an invisible iframe
* to refresh the user's subscription.
*
* @example
* <WebPushRefresh config={configStore} />
*/
export default function WebPushRefresh({ config }: Props): React.JSX.Element;
export {};