UNPKG

reblendjs

Version:

This is build using react way of handling dom but with web components

13 lines (12 loc) 310 B
import { BaseComponent } from './BaseComponent'; // eslint-disable-next-line @typescript-eslint/ban-types class Reblend extends BaseComponent { static ELEMENT_NAME = 'Fragment'; constructor() { super(); } async html() { return this?.props?.children; } } export { Reblend };