nixos-configs/nixosModules/ags-v2/config/widgets/date/wim.tsx
matt1432 e2d8754f81
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(agsV2): separate some widgets from popup-window for binto prep
2024-11-12 14:53:56 -05:00

15 lines
276 B
TypeScript

import { Astal } from 'astal/gtk3';
import PopupWindow from '../misc/popup-window';
import DateWidget from './main';
export default () => (
<PopupWindow
name="calendar"
anchor={Astal.WindowAnchor.TOP}
>
<DateWidget />
</PopupWindow>
);