mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 21:01:54 +05:30
feat: add control center widget
This commit is contained in:
12
widgets/control-center/notification-list.tsx
Normal file
12
widgets/control-center/notification-list.tsx
Normal 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>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user