import $ from "jquery"; code example
Example 1: import $ from 'jquery'
import * as $ from 'jquery'
Example 2: how to import jquery modular
<script type="module">
import $ from "./jquery/src/jquery.js";
$('#message').text('Hi from jQuery!');
</script>