summaryrefslogtreecommitdiff
path: root/src/modules/popdowns/index.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 23:20:39 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 23:20:39 +1100
commit6d5805e66204caa599a8a2996238adf7931cb95b (patch)
tree49855ba4e35506cb936ecef692386c4bd8603016 /src/modules/popdowns/index.tsx
parentbase popdown window (diff)
downloadcaelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.tar.gz
caelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.tar.bz2
caelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.zip
refactor: move popdowns to own folder
And group them like osds
Diffstat (limited to 'src/modules/popdowns/index.tsx')
-rw-r--r--src/modules/popdowns/index.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx
new file mode 100644
index 0000000..db3245b
--- /dev/null
+++ b/src/modules/popdowns/index.tsx
@@ -0,0 +1,9 @@
+import Notifications from "./notifications";
+import Updates from "./updates";
+
+export default () => {
+ <Notifications />;
+ <Updates />;
+
+ return null;
+};