import { clsx } from 'clsx' import styles from './EmptyMessage.module.scss' import { useLocalize } from '../../../context/localize' export const EmptyMessage = () => { const { t } = useLocalize() return (
{t('No notifications yet')}
{t("Write good articles, comment\nand it won't be so empty here")}
) }