Importing ES Modules: Default Imports

This page uses the following Javascript import syntax:

<script type="module">
import Hello from './hello-en.js';
import Bonjour from './hello-fr.js';
SayHello('Alice');
Bonjour('Bob');
</script>