21 lines
371 B
HTML
21 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Quill</title>
|
|
<link rel="icon" href="">
|
|
<link rel="stylesheet" href="">
|
|
<script src=""></script>
|
|
<script src="Quill/index.js"></script>
|
|
<script type="module">
|
|
import Home from "./app.js"
|
|
|
|
window.routes = {
|
|
"/": Home
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|