Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
link: string;
};
type MovieHit = {
actors: string[];
color: string;
genre: string[];
image: string;
objectID: string;
score: number;
title: string;
};
const stories = storiesOf('QueryRuleContext', module);
const StoryHits = connectHits(({ hits }: { hits: MovieHit[] }) => (
<div>
{hits.map(hit => (
<div>
<div>
<img src="{hit.image}">
</div>
<div>
<div>
</div>
</div>
</div>
))}
</div>
));
*
* const searchClient = algoliasearch(
* 'latency',
* '6be0576ff61c053d5f9a3225e2a90f76'
* );
* const App = () => (
*
*
*
* );
*/
export default connectHits(Hits);