Komps on GitHub
Komps is a library of style-less Web Components for building UIs. Komps is platform-agnostic, and each component is fully tree-shakeable by any bundler.

Installation

npm install komps

Usage

Import only the components you use:

import { Modal } from 'komps';

new Modal({ content: "Hello World" });