chore(translations): start a new thread

This commit is contained in:
plebeius.eth
2024-03-20 13:08:08 +01:00
parent d0127afe1b
commit 5ef7f0a77d
36 changed files with 74 additions and 36 deletions
+4 -1
View File
@@ -1,9 +1,12 @@
import styles from './post-form.module.css';
import { useTranslation } from 'react-i18next';
const PostForm = () => {
const { t } = useTranslation();
return (
<div className={styles.togglePostForm}>
[<span>Start a New Thread</span>]
[<span>{t('start_new_thread')}</span>]
</div>
);
};