Skip to content

Instantly share code, notes, and snippets.

@edwardsmoses
Created April 19, 2020 18:55
Show Gist options
  • Save edwardsmoses/338c5b2b5dac34174431e314ead3ef9a to your computer and use it in GitHub Desktop.
Save edwardsmoses/338c5b2b5dac34174431e314ead3ef9a to your computer and use it in GitHub Desktop.
Render Emojis in React..
import React from 'react';
const Emoji = props => (
<span
className="emoji"
role="img"
aria-label={props.label ? props.label : ""}
aria-hidden={props.label ? "false" : "true"}
>
{props.symbol}
</span>
);
export default Emoji;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment