blob: 6c4ef74b5174d5cfe2906d41f622b740f7a9d0b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function Topbar() {
return (
<div className="Topbar">
<h1> View from the edge </h1>
<div className="TopbarContents">
<h2> Lifepath </h2>
</div>
</div>
);
}
export default Topbar;
|