16 lines
204 B
JavaScript
16 lines
204 B
JavaScript
|
|
const myLabel = Widget.Label({
|
||
|
|
label: 'Emillllle',
|
||
|
|
})
|
||
|
|
|
||
|
|
const myBar = Widget.Window({
|
||
|
|
name: 'bar',
|
||
|
|
anchor: ['top', 'left', 'right'],
|
||
|
|
child: myLabel,
|
||
|
|
})
|
||
|
|
|
||
|
|
App.config({
|
||
|
|
windows: [
|
||
|
|
myBar
|
||
|
|
]
|
||
|
|
})
|