UNPKG

htmr

Version:

Simple and lightweight (< 2kB) HTML to React converter that works in server and browser

6 lines (4 loc) 215 B
import { HtmrOptions as Options } from './src/types'; import { ReactNode } from 'react'; export default function htmr(html: string, options?: Partial<Options>): ReactNode export type HtmrOptions = Partial<Options>