How to Get value of select onChange in Functional Component in React
Im Using ant design pro with react to create form, but i cannot save the value of select using hooks. i Shows a errorn error const ExistingGroup = (props) => { const [group,setGroup] = useState([]); const saveGroup = (event) => { setGroup(event.target.value); } return ( <PageContainer header={{ title: ” }} ghost> <Card bordered={false} style={{ width:… Read More How to Get value of select onChange in Functional Component in React