From 334a230088248272e09fabc955db7da2d86d9fd8 Mon Sep 17 00:00:00 2001 From: Victor Giraldo Date: Sat, 10 Aug 2024 23:12:06 -0400 Subject: [PATCH] Remove default import I missed --- react/react_testing/introduction_to_react_testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/react_testing/introduction_to_react_testing.md b/react/react_testing/introduction_to_react_testing.md index 8c951285910..b1db831103e 100644 --- a/react/react_testing/introduction_to_react_testing.md +++ b/react/react_testing/introduction_to_react_testing.md @@ -75,7 +75,7 @@ There are numerous ways a user can interact with a webpage. Even though live use ```jsx // App.jsx -import React, { useState } from "react"; +import { useState } from "react"; const App = () => { const [heading, setHeading] = useState("Magnificent Monkeys");