function renderAuthPendingNotification()

in web/src/components/pages/home/home.tsx [33:41]


  function renderAuthPendingNotification() {
    const authPendingNotification: FlashbarProps.MessageDefinition[] = [{
      type: 'success',
      loading: true,
      content: i18n.awaitLogin,
    }];

    return <Flashbar items={authPendingNotification}/>;
  }