14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
|
import Widget from 'resource:///com/github/Aylur/ags/widget.js';
|
||
|
|
||
|
const myLabel = Widget.Label({
|
||
|
label: 'some example content',
|
||
|
})
|
||
|
|
||
|
const myBar = Widget.Window({
|
||
|
name: 'bar',
|
||
|
anchor: ['top', 'left', 'right'],
|
||
|
child: myLabel,
|
||
|
})
|
||
|
|
||
|
export default { windows: [myBar] }
|