add post form toggle UI

This commit is contained in:
plebeius.eth
2024-03-20 13:00:11 +01:00
parent 3be0214e86
commit d0127afe1b
5 changed files with 58 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
import styles from './post-form.module.css';
const PostForm = () => {
return (
<div className={styles.togglePostForm}>
[<span>Start a New Thread</span>]
</div>
);
};
export default PostForm;