16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
|
import { Astal } from 'astal/gtk3';
|
||
|
|
||
|
import PopupWindow from '../misc/popup-window';
|
||
|
|
||
|
import BluetoothWidget from './main';
|
||
|
|
||
|
|
||
|
export default () => (
|
||
|
<PopupWindow
|
||
|
name="bluetooth"
|
||
|
anchor={Astal.WindowAnchor.RIGHT | Astal.WindowAnchor.TOP}
|
||
|
>
|
||
|
<BluetoothWidget />
|
||
|
</PopupWindow>
|
||
|
);
|