From 8e4ac207a69c82cfa1df89ba40d659f1bdf5c5ff Mon Sep 17 00:00:00 2001 From: Caio Augusto Date: Fri, 7 Apr 2023 20:55:52 -0300 Subject: [PATCH] docs: fix code snippets --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 255dc42..484e12a 100644 --- a/README.md +++ b/README.md @@ -487,7 +487,7 @@ const options = [ ]; const App = () => { - const[animal, setAnimal] =useState(null); + const [animal, setAnimal] = useState(null); const handleChange = value => { console.log("value:", value);