Know the name of the animal by either dropping any animal-emoji from the lists or just click any of the emojis and it's name will appear.
You can refer to this video for a quick demo.
Client: React, HTML5, CSS3
Hosted On: Codesandbox.io
- Interpret animal-emojis on the fly.
- Cross platform
Used a dictionary to store all emojis and their meaning.
To get the value of the key, below function was used
function clickHandler(emoji) {
output = emojiDictionary[emoji];
setOutput(output);