components

Build the component registry for JoyDom:

JoyDom(spec, components = components {
component("rating-stars") { /* `this` is the ComponentScope */}
component("card") { Children() } // a container that renders its node's children
default { Children() } // placeholder for any unregistered custom type
})