You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
410 B
HTML
24 lines
410 B
HTML
<html>
|
|
</html>
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="css" href="trees.css" />
|
|
</head>
|
|
|
|
<body style="margin: 0px;">
|
|
<script type="module">
|
|
import init from './trees.js'
|
|
|
|
init().catch((error) => {
|
|
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
|
|
throw error;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|