import { h } from "preact"; import { colors } from "../helpers/theme"; const styles = { marginBottom: 16, padding: 8, color: colors.dfred, }; export function ErrorLabel({ error }) { return error ?
Error: {error.message}