Chap05 -> Using query parameters -> 7 & 8: Render search criteria and questions that returned from search

Chap05
Jason Zhu 2022-03-30 16:43:26 +11:00
parent 2319706d66
commit 3580e9b0b4
1 changed files with 15 additions and 1 deletions

View File

@ -20,5 +20,19 @@ export const SearchPage = () => {
doSearch(search);
}, [search]);
return <Page title="Search Results">{null}</Page>;
return (
<Page title="Search Results">
{search && (
<p
css={css`
font-size: 16px;
font-style: italic;
margin-top: 0px;
`}
>
<QuestionList data={questions} />
</p>
)}
</Page>
);
};