Files
tpanel/widgets/control-center/notification-list.tsx
2025-09-25 19:29:18 +05:30

13 lines
284 B
TypeScript

import { Gtk } from "ags/gtk4";
export const NotificationList = () => {
const { VERTICAL } = Gtk.Orientation;
return (
<box vexpand orientation={VERTICAL} spacing={20}>
<label label="Notifications" />
<box vexpand cssClasses={["pill"]}></box>
</box>
);
};