Hi, I Just follow in [Login.Page](https://github.com/tabler/tabler-react/blob/master/example/src/pages/LoginPage.react.js) but i'm not using Formik, i'm using react-hook-form, i'm trying testing with ``` <Form.Input name="randomText" placeholder="randomText" /> ``` reproduce ``` <input className="form-control" type="text" name="randomText" placeholder="Kode Unik" /> ``` but in react-hook-form we must [register ](https://react-hook-form.com/api/useform/register)every input with ref tag with `{...register("test")}` if i'm using ``` <input className="form-control" type="text" name="randomText" placeholder="Kode Unik" `{...register("randomText")}` /> ``` it's woking, can somebody give some trick? or i just use reactstrap ?
Hi, I Just follow in Login.Page but i'm not using Formik, i'm using react-hook-form, i'm trying testing with
reproduce
but in react-hook-form we must register every input with ref tag with
{...register("test")}if i'm using
it's woking, can somebody give some trick? or i just use reactstrap ?