Select Option 처리하기
import React, { useState } from 'react' import {Typography, Button, Form, Input} from 'antd'; const { Title } = Typography; const { TextArea } = Input; const Continents = [ { key: 1, value: "Africa" }, { key: 2, value: "Europe" }, { key: 3, value: "Asia" }, { key: 4, value: "North America" }, { key: 5, value: "South America" }, { key: 6, value: "Australia" }, { key: 7, value: "Antarctica" } ] fu..