33 lines
583 B
HTML
33 lines
583 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sidekick Example: Hello World</title>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Link tree -->
|
|
<ul><li>
|
|
<a href="../">Examples</a>
|
|
<ul><li>
|
|
<b>Hello world</b>
|
|
</li></ul>
|
|
</li></ul>
|
|
|
|
|
|
<h1>Sidekick Example: Hello World</h1>
|
|
|
|
<h4>Check the console</h4>
|
|
|
|
<p>
|
|
This example just demonstrates how to import sidekick and call functions
|
|
from the module. Useful for debugging purposes, or getting out of mental
|
|
quicksand.
|
|
</p>
|
|
|
|
|
|
<!-- script -->
|
|
<script type="module" src="./dist/hello.js"></script>
|
|
</body>
|
|
</html>
|