UNPKG

@arnelirobles/rnxjs

Version:

Minimalist Vanilla JS component system with reactive data binding.

10 lines (7 loc) 247 B
import { createComponent } from '../../utils/createComponent.js'; export function Tab({ title = '', children = '' }) { const template = () => ` <div data-tab data-slot></div> `; return createComponent(template, { title, children }); }