RESTfulMC/Frontend/src/app/components/creeper.tsx

17 lines
252 B
TypeScript
Raw Normal View History

2024-04-16 07:13:13 -07:00
import Image from "next/image";
/**
* A creeper image.
*
* @returns the creeper jsx
*/
const Creeper = (): JSX.Element => (
<Image
src="/media/creeper.png"
alt="A Minecraft Creeper"
width={216}
height={216}
/>
);
export default Creeper;