mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
14 lines
363 B
JavaScript
14 lines
363 B
JavaScript
import {Widget} from "../imports.js"
|
|
import PopupWindow from "./lib/popupwindow.js"
|
|
import SidebarRight from "../modules/sideright.js"
|
|
|
|
export default () =>
|
|
PopupWindow({
|
|
focusable: true,
|
|
anchor: ["right", "top", "bottom"],
|
|
name: "sideright",
|
|
showClassName: "sideright-show",
|
|
hideClassName: "sideright-hide",
|
|
child: SidebarRight(),
|
|
})
|