index.ts 144 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import {Bye} from './Bye'; import './assets/style/App.css'; const hi = 'hchoi won'; const hi1 = () => { console.log(hi); Bye(); }; hi1();