Skip to content

Instantly share code, notes, and snippets.

@danielrudn
Created July 17, 2018 15:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielrudn/40dc454da34b93a1d3a9f89d614f4a74 to your computer and use it in GitHub Desktop.
Save danielrudn/40dc454da34b93a1d3a9f89d614f4a74 to your computer and use it in GitHub Desktop.
import React from 'react';
export default ({ result }) => (
<a className="item" href={`/apps/${result.id}`}>
<div className="middle aligned content">
<div className="header">{result.name}</div>
<div className="meta">{result.author}</div>
</div>
</a>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment