import { Link } from "react-router-dom"; import { listOperatorNames } from "@stirling-pdf/shared-operations/src/workflow/getOperatorByName" import { Impose } from "@stirling-pdf/shared-operations/src/functions/impose" import { BaseSyntheticEvent } from "react"; function Dynamic() { console.log(listOperatorNames()); const operators = listOperatorNames(); function selectionChanged(s: BaseSyntheticEvent) { const selectedValue = s.target.value; if(selectedValue == "none") return; const LoadedOperator = import(`../shared-operations/src/functions/${selectedValue}`); LoadedOperator.then(console.log); } return (

Dynamic test page for operators






Go back home...

); } export default Dynamic;