You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
// import { Terminal } from "xterm";
|
|
|
|
// import { Terminal } from "xterm";
|
|
|
|
const terminal = document.getElementById("terminal");
|
|
console.log("hi");
|
|
|
|
// const term = Terminal({ cols: 120, rows: 40 });
|
|
// const term = new Terminal();
|
|
// term.open(terminalDiv);
|
|
// term.write("first succesfull hello world");
|
|
|
|
terminal.innerHTML = "Terminal should be here";
|