From baabf7631c3c92ee742fbad2006c89423d2cbcaf Mon Sep 17 00:00:00 2001 From: CodeCompleteYT <100855608+CodeCompleteYT@users.noreply.github.com> Date: Mon, 20 Feb 2023 22:29:04 +0800 Subject: [PATCH] Update SearchResultsList imports and usage --- src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 9475b5a..9873b4f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2,7 +2,7 @@ import { useState } from "react"; import "./App.css"; import { SearchBar } from "./components/SearchBar"; -import { ResultsList } from "./components/SearchResultsList"; +import { SearchResultsList } from "./components/SearchResultsList"; function App() { const [results, setResults] = useState([]); @@ -11,7 +11,7 @@ function App() {
- {results && results.length > 0 && } + {results && results.length > 0 && }
);