summaryrefslogtreecommitdiff
path: root/core/lua
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-09 11:50:50 +0000
committerAylur <[email protected]>2024-10-09 13:57:28 +0000
commit8108bcc6a34e0460f642dc724f0a26f33b938825 (patch)
tree4c05122d3d36aa931d6fa3c7bf9b5ef09f796c95 /core/lua
parentd6cbbdfb3f6e81c8265af36c88fd9547d93f9cbd (diff)
gjs: fix widget props type
delete test
Diffstat (limited to 'core/lua')
-rw-r--r--core/lua/test.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/core/lua/test.lua b/core/lua/test.lua
deleted file mode 100644
index 2494403..0000000
--- a/core/lua/test.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local a = require("astal")
-
-a.App:start({
- instance_name = "Hello",
- main = function()
- a.Widget.Window({
- no_implicit_destroy = true,
- a.Widget.Button({
- label = "hello",
- }),
- })
- end,
-})