26 lines
503 B
TypeScript
26 lines
503 B
TypeScript
import Login from "./login"
|
|
import SwitchThemeColor from "./SwitchThemeColor"
|
|
|
|
function TopBar(){
|
|
|
|
|
|
|
|
|
|
return(
|
|
<div className="topBar">
|
|
<div className="toBarLeft">
|
|
<img className="logo" src="/Frisbyee_logo.png"/>
|
|
<h2>Frisbyee</h2>
|
|
</div>
|
|
|
|
|
|
<div className="topBarRight">
|
|
<SwitchThemeColor/>
|
|
<Login/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TopBar
|