JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#">
    meooow
    <img src="http://placekitten.com/g/200/300">
</a>

CSS

a {
    position: relative;
}

img {
    position: absolute;
    left: 100%;
    top: 100%;
    display: none;
}

a:hover img {
    display: block;
}