-
-
- 선택한 사진
-
-
-
-
- {images.map((src, index) => (
-
-

-
-
- ))}
-
-
- )}
- >
- );
-};
diff --git a/src/features/comment/component/TextFieldBottom.tsx b/src/features/comment/component/TextFieldBottom.tsx
new file mode 100644
index 0000000..d4b7282
--- /dev/null
+++ b/src/features/comment/component/TextFieldBottom.tsx
@@ -0,0 +1,48 @@
+import { CommentInput } from '@/components/molecules/comment';
+import Close from '@/assets/close_20.svg';
+import Plus from '@/assets/plus_20.svg';
+import Upload from '@/assets/upload.svg';
+import UploadActive from '@/assets/upload_active.svg';
+
+interface TextFieldBottomProps {
+ text: string;
+ setText: (text: string) => void;
+ showGallery: boolean;
+ setShowGallery: (value: boolean) => void;
+ handleUpload: () => void;
+}
+
+export const TextFieldBottom = ({
+ text,
+ setText,
+ showGallery,
+ setShowGallery,
+ handleUpload,
+}: TextFieldBottomProps) => {
+ return (
+