select ๊ฐ์ value์ ๋ฃ๊ธฐ๋ง ํ์ง ํด๋น value์์ ๊บผ๋ด์จ ๊ฒ์ด ๊ธฐ์ต์ด ์ ์๋ ๋ฉ๋ชจํด๋๋๋ค. import { useState } from "react"; export default function App() { const initialFruitList = [ { id: 1, name: "์ฌ๊ณผ", color: "RED" }, { id: 2, name: "๋ฐ๋๋", color: "YELLOW" }, { id: 3, name: "์ฒด๋ฆฌ", color: "RED" }, { id: 4, name: "๋ณต์ญ์", color: "PINK" }, { id: 5, name: "ํฌ๋", color: "PURPLE" }, ]; const [fruitList, setFruitList] = useState(initia..