We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 091bccc commit 8d9d41fCopy full SHA for 8d9d41f
src/components/EmptyState/EmptyState.tsx
@@ -1,11 +1,13 @@
1
+import { useTranslation } from '@/hooks/useTranslation';
2
import styles from './EmptyState.module.scss';
3
import Icon from '@/assets/icons/bots.svg';
4
5
const EmptyState = () => {
6
+ const { t } = useTranslation();
7
return (
8
<div className={styles.emptyState}>
9
<div className={styles.message}>
- <Icon width={50} height={50} className={styles.icon} /> Empty!
10
+ <Icon width={50} height={50} className={styles.icon} /> {t('empty')}
11
</div>
12
13
);
0 commit comments