UNPKG

@e280/authlocal

Version:

User-sovereign login system for everybody

20 lines (14 loc) 380 B
import {html, shadowView} from "@benev/slate" import stylesCss from "./styles.css.js" import themeCss from "../../../theme.css.js" export const Problems = shadowView(use => (problems: string[]) => { use.name("problems") use.styles([themeCss, stylesCss]) return html` <ol theme-zone=danger> ${problems.map(problem => html` <li>${problem}</li> `)} </ol> ` })