import { stylesheet } from "typestyle"; import { type Component, createElement } from "websnacks"; const styles = stylesheet({ navbar: { minWidth: "140px", borderRight: "1px solid #ddd", background: "#fff", }, sectionTitle: { color: "#333", textAlign: "center", borderBottom: "1px solid #333", padding: "6px", margin: "0 4px", fontSize: "18px", }, linksList: { padding: "3px 16px 0", }, linksListItem: { padding: "6px", }, }); const links = [ { title: "Home", href: "/" }, { title: "Projects", href: "/projects" }, ]; export const Navbar: Component = () => ( );