해시태그 생성기키워드를 입력하면 관련 해시태그를 자동으로 생성해드려요
import React, { useState, useRef } from 'react';import { Hash, Copy, RefreshCw, Sparkles, Tag, Plus, X } from 'lucide-react';const HashtagGenerator = () => { const [inputText, setInputText] = useState(''); const [selectedCategory, setSelectedCategory] = useState('general'); const [customKeywords, setCustomKeywords] = useState([]); const [newKeyword, setNewKeyword] = useState(''); const [gen..