From a93a64bf9675ea8dddddc57fe49ba54e8a30a81a Mon Sep 17 00:00:00 2001 From: Aleksandr Gumroian Date: Fri, 27 Sep 2024 14:44:02 +0200 Subject: [PATCH] docs: Refactor EmailInput description --- src/bootstrap/EmailInput.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bootstrap/EmailInput.md b/src/bootstrap/EmailInput.md index d96ae95..1178756 100644 --- a/src/bootstrap/EmailInput.md +++ b/src/bootstrap/EmailInput.md @@ -6,6 +6,7 @@ All additional `props` are passed to the `` HTML component. ```js import { useState } from "react"; +import Button from "./Button"; const [email, setEmail] = useState("Wrong email");
e.preventDefault()}> setEmail(event.target.value)} /> - + ; ```