mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 21:01:54 +05:30
13 lines
284 B
TypeScript
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>
|
|
);
|
|
};
|