“React Hook z” Kod odpowiedzi

Formularz Haczyka NPM

import React from 'react';import { useForm } from 'react-hook-form'; function App() {  const { register, handleSubmit, errors } = useForm(); // initialise the hook  const onSubmit = (data) => {    console.log(data);  };   return (    <form onSubmit={handleSubmit(onSubmit)}>      <input name="firstname" ref={register} /> {/* register an input */}            <input name="lastname" ref={register({ required: true })} />      {errors.lastname && 'Last name is required.'}            <input name="age" ref={register({ pattern: /\d+/ })} />      {errors.age && 'Please enter number for age.'}            <input type="submit" />    </form>  );}
Philan ISithembiso

React Hook z

react hook from
Brainy Badger

Odpowiedzi podobne do “React Hook z”

Pytania podobne do “React Hook z”

Więcej pokrewnych odpowiedzi na “React Hook z” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu