ShatteredSword/src/main.ts

8 lines
214 B
TypeScript
Raw Normal View History

2020-08-03 16:51:20 -04:00
import { sayHello } from './greet';
function showHello(divName: string, name: string) {
const elt = document.getElementById(divName);
elt.innerText = sayHello(name);
}
showHello('greeting', 'TypeScript');