JavaScript
This library is published as an ES module and must be loaded using <script type="module">.
type="module" attribute is required
html
<!doctype html>
<html lang="en" dir="ltr">
<head></head>
<body>
<script type="module" src="https://unpkg.com/@swiftwc/ui/client"></script>
</body>
</html>html
<!doctype html>
<html lang="en" dir="ltr">
<head></head>
<body>
<script type="module" src="path/to/app.js">
import {client} from 'https://unpkg.com/@swiftwc/ui/client';
// rest of your app code here 👇🏻
</script>
</body>
</html>