Skip to content

Instantly share code, notes, and snippets.

@JasonStoltz
Created June 27, 2019 20:34
Show Gist options
  • Save JasonStoltz/b4b113250eccf1c2eada9b355822bc29 to your computer and use it in GitHub Desktop.
Save JasonStoltz/b4b113250eccf1c2eada9b355822bc29 to your computer and use it in GitHub Desktop.
Medium - Search UI - 6
export default function App() {
return (
<SearchProvider config={configurationOptions}>
<div className="App">
<Layout
header={<SearchBox />}
// titleField is the most prominent field within a result: the result header.
bodyContent={<Results titleField="name" urlField="image_url" />}
/>
</div>
</SearchProvider>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment