lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines • 726 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "preact/jsx-runtime";
import { signal } from "@preact/signals";
import ContextMenu from "../component/ContextMenu";
import MenuButton from "../component/MenuButton";
import { VERSION } from "../../globals";
export const menuBarHelpContextMenuSignal = signal(undefined);
const MenuBarHelpContextMenu = () => {
return (_jsxs(ContextMenu, { positionSignal: menuBarHelpContextMenuSignal, children: [_jsx(MenuButton, { children: `Version ${VERSION}` }), _jsx(MenuButton, { children: "Welcome" }), _jsx(MenuButton, { children: "Documentation" }), _jsx(MenuButton, { children: "Forum" })] }));
};
export default MenuBarHelpContextMenu;
//# sourceMappingURL=MenuBarHelpContextMenu.js.map