2023-10-16 17:24:33 +00:00
|
|
|
import { clsx } from 'clsx'
|
2023-11-14 15:10:00 +00:00
|
|
|
|
2023-10-16 17:24:33 +00:00
|
|
|
import { useLocalize } from '../../../context/localize'
|
|
|
|
|
2023-11-14 15:10:00 +00:00
|
|
|
import styles from './EmptyMessage.module.scss'
|
|
|
|
|
2023-10-16 17:24:33 +00:00
|
|
|
export const EmptyMessage = () => {
|
|
|
|
const { t } = useLocalize()
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div class={clsx(styles.EmptyMessage)}>
|
|
|
|
<div class={styles.title}>{t('No notifications yet')}</div>
|
|
|
|
<div>{t("Write good articles, comment\nand it won't be so empty here")}</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|