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