This commit is contained in:
SpikeHD
2022-05-08 16:39:26 -07:00
parent 8e0d606baa
commit 31684227e1
4 changed files with 31 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
.TopBar {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
height: 34px;
background-color: #141414;
z-index: 1;
color: #fff;
}

View File

@@ -0,0 +1,16 @@
import React from 'react';
import './TopBar.css';
export default class TopBar extends React.Component {
constructor(props: unknown[]) {
super(props)
}
render() {
return (
<div className="TopBar">
TOP BAR BABY
</div>
)
}
}