diff --git a/src/features/Posts/Components/Comments/AddComment/AddComment.tsx b/src/features/Posts/Components/Comments/AddComment/AddComment.tsx new file mode 100644 index 0000000..669cbd5 --- /dev/null +++ b/src/features/Posts/Components/Comments/AddComment/AddComment.tsx @@ -0,0 +1,33 @@ +import { FormEvent } from "react"; +import Button from "src/Components/Button/Button"; +import Avatar from "src/features/Profiles/Components/Avatar/Avatar"; +import { useAutoResizableTextArea } from "src/utils/hooks"; + + + +export default function AddComment() { + + const textAreaRef = useAutoResizableTextArea(); + + const submitComment = (e: FormEvent) => { + e.preventDefault(); + alert('submitted') + } + + return ( +
+
+ +