import { html } from "lit"; import { PrimariaErrorView } from "./component"; export const template = (props: PrimariaErrorView) => { return html`

${props.error?.message}

`; };