def build(self): return Tag.div("hello",self.v,onclick=self.bind.onclick())
def build(self): return Tag.div( self.c, C())
def build(self): rows=[C(i) for i in self.ll] return Tag.div(*rows)
def build(self): o=Tag.div( self.v, Tag.button("reload1",onclick=self.bind.evtReload()), Tag.button("reload2",onclick=self.bind.evtReload2()), ) return o
def build(self): return Tag.div("hello", self.main.a, self.parent.v)
def build(self): return Tag.div(ShareState(), )
def build(self): return VBox(HBox(InputText(self.txt), Text(self.txt)), MyInc(self.nb), MyInc(self.nb), Box(self.nb, Tag.div(int(self.nb) * "тнР")), Button("Show mbox", onclick=self.bind.aff()))
def build(self): self("alert(2)") return Tag.div( self.cpt, Tag.button("++",onclick=self.bind.add()) )