Skip to content

Instantly share code, notes, and snippets.

@lseemann
Created July 19, 2020 22:41
Show Gist options
  • Save lseemann/b926e4819018a5e0f808c9f0a067b556 to your computer and use it in GitHub Desktop.
Save lseemann/b926e4819018a5e0f808c9f0a067b556 to your computer and use it in GitHub Desktop.
const Refer = ({
headline, body, link, link_text
}: any) => (
<aside>
<h1>{headline}</h1>
<p>{body}</p>
<a href={link}>{link_text}</a>
</aside>
);
export default Refer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment