feat: add control center widget

This commit is contained in:
tux
2025-09-25 19:29:18 +05:30
parent 96431e101a
commit bd8cd294ee
10 changed files with 217 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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>
);
};