/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import { UiNotificationToast } from './ui-notification-toast' import './notifications.scss' import { useApplicationState } from '../../hooks/common/use-application-state' export const UiNotifications: React.FC = () => { const notifications = useApplicationState((state) => state.uiNotifications) return (