UNPKG

370 BHTMLView Raw
1<html>
2 <head>
3 <title>module import test</title>
4 </head>
5 <body>
6 text following should say hello ... <b><span id="rplx"></span></b>
7
8 <script type="module">
9 import DailyIframe from '../dist/daily-iframe-esm.js';
10 let daily = new DailyIframe();
11 document.getElementById('rplx').innerText = daily.sayHello();
12 </script>
13 </body>
14</html>