Item List Manager

  • + 0 comments

    `const handleAddItem = () => {

    if (input.trim()) { setItems([...items, input]); setInput(''); } };