Updated UI, Improved Style to be more "Reactly", added Functionality

This commit is contained in:
Marcel Pöppe
2024-09-18 13:24:55 +02:00
parent ab97b462e3
commit 9141d9e6fb
5 changed files with 190 additions and 160 deletions
+17
View File
@@ -0,0 +1,17 @@
export function test() {
console.log("Dies ist die Testfunktion.");
}
export function calculate() {
let functions:string = document.getElementById('funcs').value;
let variables:string = document.getElementById('vars').value;
let funcs:string[] = functions.split(/; */);
let vars:string[] = variables.split(/; */);
// Irgend ein Interface
// document.getElementById('out').innerHTML = funcs;
// output.innerHTML = functions.innerHTML;
}