import { FunctionComponent } from 'preact'; export const TitleBar: FunctionComponent<{ className?: string }> = ({ children, className, }) =>
{children}
; export const Title: FunctionComponent<{ className?: string }> = ({ children, className, }) => { return
{children}
; };