Personal-site/components/Avatar.js

13 lines
280 B
JavaScript
Raw Normal View History

2020-06-14 11:47:02 +00:00
import React from "react";
import styles from "./modules/Avatar.module.css";
export default function Avatar(props) {
return (
<img
className={`${styles.bordered} ${styles.absolute}`}
src="/images/bongo.png"
alt="The one and only bongo cat!"
/>
);
}