import { JSX } from "preact"; const NAV_ITEMS = { "/note": "Notes", "/register": "Register", "/login": "Login", }; const navItem = ([url, text]: [string, string]) => { return ( {text} ); }; export function Page(props: JSX.HTMLAttributes) { return (

LyricScreen

{props.children}
); }