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

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

Nothing here!
) : (
)}
); };