11 lines
280 B
JavaScript
Raw Normal View History

2023-10-13 15:04:11 +02:00
import ticket from "./src/tickets/ticket.mjs";
import roleselect from "./src/rolereact/roleselect.mjs";
import document from "./src/misc/document.mjs";
2023-09-13 21:12:45 +02:00
const selectMenuList = {
2023-10-13 15:04:11 +02:00
ticket: ticket,
roleselect: roleselect,
document: document,
};
2023-09-13 21:12:45 +02:00
2023-10-13 15:04:11 +02:00
export { selectMenuList };