import { For, This, createBinding } from "ags"; import app from "ags/gtk4/app"; import { Bar } from "./widgets/bar"; import { Notifications } from "./widgets/notifications"; import { ControlCenter } from "./widgets/control-center"; export const Main = () => { const monitors = createBinding(app, "monitors"); return ( {(monitor) => ( )} ); };