15 lines
290 B
TypeScript
15 lines
290 B
TypeScript
|
import { Astal } from 'astal/gtk3';
|
||
|
|
||
|
import Popups from './popups';
|
||
|
|
||
|
|
||
|
export const NotifPopups = () => (
|
||
|
<window
|
||
|
name="notifications"
|
||
|
layer={Astal.Layer.OVERLAY}
|
||
|
anchor={Astal.WindowAnchor.TOP | Astal.WindowAnchor.LEFT}
|
||
|
>
|
||
|
<Popups />
|
||
|
</window>
|
||
|
);
|