jungle-dom
v0.1.3
Published
A web based domain for building user interfaces with jungle
Downloads
3
Maintainers
Readme
Jungle-Dom
A client side document creation domain for the jungle framework
Usage
//the domain exports and entry point
import DOM from 'jungle-dom'
import {J, j, Domain} from 'jungle-core'
//creating
const appD = new Domain().on(J)
.define('dom', DOM)
const app = appD.recover(j('dom',{
head:{
mount:'jungle-mount-id'
},
header:j('h1', "The example"),
}))