import { ComponentChildren } from "preact"; function InputBox(props: { label: string; labelChildren?: ComponentChildren; type: string; }){ const { label, labelChildren, type } = props; return
Login failed