mirror of
https://github.com/yewstack/yew.git
synced 2026-01-25 16:43:15 +00:00
* remove static directory, move script to run_example.sh * gitignore * server infra * Support --build-only * fix npm_and_rest example * Fix various static index.html's * Fix spacing * newlines at the end * Cleanup * tabs -> spaces * line ending * remove build_examples.sh * Apply suggestions from code review Co-authored-by: Simon <simon@siku2.io> * format file and improve EXIT trap Co-authored-by: Simon <simon@siku2.io>
15 lines
320 B
HTML
15 lines
320 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Yew • Nested List</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import init from "./wasm.js"
|
|
init()
|
|
</script>
|
|
</body>
|
|
</html>
|