Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 4.68 KB

README.it-IT.md

File metadata and controls

99 lines (76 loc) · 4.68 KB

Form veloci, flessibili e personalizzabili con una validazione facile da usare.

CircleCI npm downloads npm dep npm Coverage Status

Tweet Join the community on Spectrum

🇦🇺English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷한국어 | 🇫🇷Français | 🇮🇹Italiano | 🇧🇷Português | 🇪🇸Español | 🇷🇺Русский

Caratteritiche

  • Sviluppata puntando l'attenzione su peformance ed esperienza di sviluppo
  • Validazione form di tipo 'uncontrolled'
  • Leggera, senza nessuna dipendenza
  • Segue gli standard HTML per la validazione
  • Compatibile con React Native
  • Supporta lo schema di validazione Yup
  • Supporta la validazione nativa del browser
  • Sviluppa form velocemente grazie al form builder

Installazione

$ npm install react-hook-form

Links

Come iniziare

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>
  );
}

Contributor

Grazie a queste splendide persone. [Diventa un contributor].

Sostenitori

Grazie anche a tutti i nostri sostenitori! [Diventa un sostenitore].