Files
5chan/src/components/post-form/post-form.tsx
T
2024-03-21 15:21:33 +01:00

24 lines
530 B
TypeScript

import styles from './post-form.module.css';
import { useTranslation } from 'react-i18next';
export interface PostFormProps {
address: string | undefined;
}
const PostForm = ({ address }: PostFormProps) => {
const { t } = useTranslation();
return (
<>
<div className={styles.postFormButtonDesktop}>
[<span>{t('start_new_thread')}</span>]
</div>
<div className={styles.postFormButtonMobile}>
<span>{t('start_new_thread')}</span>
</div>
</>
);
};
export default PostForm;