Как получить доступ к значениям форм в React

handleSubmit = (event) => {
  event.preventDefault();
  console.log(event.target[0].value)
}
Nutty Newt