import React from "react"; import { SearchResult } from "../components/SearchResult"; export const SearchPage = ({ searchString, searchResults }) => { const { meals } = searchResults; return (

Results for: {searchString}

{meals === null ? (

No results to display, instead there is a picture of my breakfast.

Nothing here!

) : (
)}
); };