Item List Manager

  • + 0 comments

    const handleAddItem = () => { if (input.trim() !== "") { // Prevent adding empty or only-space items setItems([...items, input]); // Add the input to the list setInput(""); // Clear the input field } };