| 1 | import { h } from 'preact'; |
| 2 | |
| 3 | export interface HTMLContentProps { |
| 4 | content: string; |
| 5 | parentElement?: string; |
| 6 | } |
| 7 | |
| 8 | export function HTMLElement(props: HTMLContentProps) { |
| 9 | return h(props.parentElement || 'span', { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…