summaryrefslogtreecommitdiff
path: root/examples/js/simple-bar/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/js/simple-bar/app.ts')
-rw-r--r--examples/js/simple-bar/app.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/js/simple-bar/app.ts b/examples/js/simple-bar/app.ts
deleted file mode 100644
index 4b7ea48..0000000
--- a/examples/js/simple-bar/app.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { App } from "astal/gtk3"
-import style from "./style.scss"
-import Bar from "./widget/Bar"
-
-App.start({
- css: style,
- instanceName: "js",
- requestHandler(request, res) {
- print(request)
- res("ok")
- },
- main: () => App.get_monitors().map(Bar),
-})