mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
13 lines
365 B
JavaScript
13 lines
365 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(),
|
|
});
|