Skip to content

Commit e58370e

Browse files
committed
Initial commit
0 parents  commit e58370e

File tree

16 files changed

+2062
-0
lines changed

16 files changed

+2062
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules
3+
dist
4+
types

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# View
2+
3+
Define the visual elements of your web app using a hierarchy of views.

index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>WebStdUI Router • TodoMVC</title>
7+
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
8+
<!-- <link rel="stylesheet" href="todomvc.css"> -->
9+
<style>
10+
body {
11+
color: black;
12+
background-color: white;
13+
}
14+
15+
@media (prefers-color-scheme: dark) {
16+
body {
17+
color: white;
18+
background-color: black;
19+
}
20+
}
21+
</style>
22+
</head>
23+
<body>
24+
<todo-app></todo-app>
25+
<script type="module" src="/reference-app/main.ts"></script>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)