summaryrefslogtreecommitdiff
path: root/examples/gtk3/js/applauncher/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gtk3/js/applauncher/app.ts')
-rw-r--r--examples/gtk3/js/applauncher/app.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/gtk3/js/applauncher/app.ts b/examples/gtk3/js/applauncher/app.ts
new file mode 100644
index 0000000..d6c9e1c
--- /dev/null
+++ b/examples/gtk3/js/applauncher/app.ts
@@ -0,0 +1,9 @@
+import { App } from "astal/gtk3"
+import style from "./style.scss"
+import Applauncher from "./widget/Applauncher"
+
+App.start({
+ instanceName: "launcher",
+ css: style,
+ main: Applauncher,
+})