a post-component library for building user-interfaces on the web.
1import { create_root_into, type RootPublic as Root } from './client/root.ts'
2
3export const createRoot: (parent: Node) => Root = create_root_into
4export type { Root }
5
6export { getParentNode, invalidate, keyed, onMount, onUnmount } from './client/controller.ts'
7export { attr_directive as attr, type Directive } from './client/parts.ts'