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