UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

14 lines (13 loc) 301 B
import React from 'react'; type TextProps = { id: string; defaultMessage: string; html?: boolean; }; /** * * @example * <Text id="header.title" defaultMessage="My Notifications" /> */ export default function Text({ id, defaultMessage, html }: TextProps): React.JSX.Element; export {};