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

Dynamic test page for operators






Go back home...

); } export default Dynamic;