Implement SearchResults in App
This commit is contained in:
parent
1ab1d204af
commit
9773239b4f
|
@ -4,6 +4,7 @@ import Search from './components/search/Search'
|
|||
|
||||
import jellyfin from './assets/jellyfin.svg'
|
||||
import './App.css'
|
||||
import SearchResults from './components/search/SearchResults';
|
||||
|
||||
function App() {
|
||||
const [searchString, setSearchString] = useState("");
|
||||
|
@ -30,7 +31,9 @@ function App() {
|
|||
</header>
|
||||
<main>
|
||||
<div>
|
||||
content
|
||||
<SearchResults
|
||||
items={searchResults}
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
<div className="mobile-keyboard-mock" />
|
||||
|
|
Loading…
Reference in a new issue