File size: 509 Bytes
f332108 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import React, { Component } from "react";
import Avatar from "../assets/avatar-image.png";
import AboutMenu from "./AboutMenu.js";
export default class About extends Component {
render() {
return (
<>
<div className="avatar-container">
<img src={Avatar} alt="Avatar" />
</div>
<div className="about-content">
<AboutMenu />
</div>
</>
);
}
}
|