All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.widgets.react-props.poc Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
widget Minimal extends ReactWidget {

	Html method render () {
	    title = getProperties().title
	    name = props.name;
		return 
{ "" + title + " " + name }
; } } widget Page extends ReactWidget { Html method render () { title = "Hello"; name = "John"; return ; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy