Skip to content

Instantly share code, notes, and snippets.

@geekysrm
Last active October 26, 2020 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geekysrm/3d89b28f8356a62c57cffafb0b2d5394 to your computer and use it in GitHub Desktop.
Save geekysrm/3d89b28f8356a62c57cffafb0b2d5394 to your computer and use it in GitHub Desktop.
function Welcome({ imgSrc, imgAlt, title, pricing, url }) {
return (
<div>
<img className="rounded" src={imgSrc} alt={imgAlt} />
<div className="mt-2">
<div>
<div className="font-bold leading-snug text-gray-700">
<a href={url} className="hover:underline">
{title}
</a>
</div>
<div className="mt-2 text-sm text-gray-600">{pricing}</div>
</div>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment