Skip to content

Commit 047b9d8

Browse files
committed
Merge remote-tracking branch 'todo-list/main' into yoonseo_working
2 parents 122fad0 + 0e4f9da commit 047b9d8

File tree

16 files changed

+774
-0
lines changed

16 files changed

+774
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
/dist

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>Todo List</title>
7+
<link rel="stylesheet" href="./style.css" />
8+
</head>
9+
10+
<body>
11+
<main id="app"></main>
12+
<script src="/dist/main.js" type="module"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)