summaryrefslogtreecommitdiff
path: root/src/modules/sidebar/notifpane.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-26 13:03:20 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-26 13:03:20 +1100
commit4ae165172024b9dce5db3664a16db68dc42ba400 (patch)
treed3230716c0bb8eab6ddf7d8b17825ea569f92c69 /src/modules/sidebar/notifpane.tsx
parentcalendar: notifications for events (diff)
downloadcaelestia-shell-4ae165172024b9dce5db3664a16db68dc42ba400.tar.gz
caelestia-shell-4ae165172024b9dce5db3664a16db68dc42ba400.tar.bz2
caelestia-shell-4ae165172024b9dce5db3664a16db68dc42ba400.zip
sidebar: notifpane + scroll switch panes
Also placeholder for empty lists (notifs and events) To switch panes, primary click + scroll
Diffstat (limited to 'src/modules/sidebar/notifpane.tsx')
-rw-r--r--src/modules/sidebar/notifpane.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/modules/sidebar/notifpane.tsx b/src/modules/sidebar/notifpane.tsx
new file mode 100644
index 0000000..79290e2
--- /dev/null
+++ b/src/modules/sidebar/notifpane.tsx
@@ -0,0 +1,7 @@
+import Notifications from "./modules/notifications";
+
+export default () => (
+ <box vertical className="pane notifpane" name="notifpane">
+ <Notifications />
+ </box>
+);