13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
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!"
|
|
/>
|
|
);
|
|
}
|