19 lines
294 B
Groovy
19 lines
294 B
Groovy
package sketching
|
|
|
|
import groowt.view.web.BaseWebViewComponent
|
|
|
|
class Greeters {
|
|
|
|
static class Simple extends BaseWebViewComponent {
|
|
|
|
String target
|
|
|
|
Simple(Map attr) {
|
|
super('Hello, $target!')
|
|
this.target = attr.target ?: 'world'
|
|
}
|
|
|
|
}
|
|
|
|
}
|