2024-03-20 13:00:11 +01:00
|
|
|
import styles from './post-form.module.css';
|
2024-03-20 13:08:08 +01:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2024-03-20 13:00:11 +01:00
|
|
|
|
2024-03-20 14:31:31 +01:00
|
|
|
export interface PostFormProps {
|
|
|
|
|
address: string | undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const PostForm = ({ address }: PostFormProps) => {
|
2024-03-20 13:08:08 +01:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
2024-03-20 13:00:11 +01:00
|
|
|
return (
|
2024-03-21 15:21:33 +01:00
|
|
|
<>
|
|
|
|
|
<div className={styles.postFormButtonDesktop}>
|
2024-03-22 12:09:17 +01:00
|
|
|
[<button className='button'>{t('start_new_thread')}</button>]
|
2024-03-21 15:21:33 +01:00
|
|
|
</div>
|
|
|
|
|
<div className={styles.postFormButtonMobile}>
|
2024-03-22 12:09:17 +01:00
|
|
|
<button className='button'>{t('start_new_thread')}</button>
|
2024-03-21 15:21:33 +01:00
|
|
|
</div>
|
|
|
|
|
</>
|
2024-03-20 13:00:11 +01:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default PostForm;
|