diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-02 13:20:26 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-02 13:20:26 +1100 |
| commit | 0216fd3dd2831e19bc4312e1315283c53676af27 (patch) | |
| tree | b5b838adfbda7496b2c9b9bf2252a4741f304373 /src/modules/sidebar/time.tsx | |
| parent | app: catch errors in main (diff) | |
| download | caelestia-shell-0216fd3dd2831e19bc4312e1315283c53676af27.tar.gz caelestia-shell-0216fd3dd2831e19bc4312e1315283c53676af27.tar.bz2 caelestia-shell-0216fd3dd2831e19bc4312e1315283c53676af27.zip | |
sidebar: time pane
Also some fixes for calendar recurring events
Also fix reminders time
Diffstat (limited to 'src/modules/sidebar/time.tsx')
| -rw-r--r-- | src/modules/sidebar/time.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/modules/sidebar/time.tsx b/src/modules/sidebar/time.tsx new file mode 100644 index 0000000..c7b68ba --- /dev/null +++ b/src/modules/sidebar/time.tsx @@ -0,0 +1,14 @@ +import Calendar from "./modules/calendar"; +import Upcoming from "./modules/upcoming"; + +const TimeDate = () => <box></box>; + +export default () => ( + <box vertical className="pane time" name="time"> + <TimeDate /> + <box className="separator" /> + <Upcoming /> + <box className="separator" /> + <Calendar /> + </box> +); |