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)} /> - + ; ```