import React from "react"; import "./topbar.css"; export default function TopBar({ username, theme, setTheme, onLoginClick, onSignupClick }) { return (
SocioWire Logo
SocioWire
Wired to life
{username ? (
{username}
) : ( <> )}
); }