Skip to content

Commit

Permalink
completed
Browse files Browse the repository at this point in the history
  • Loading branch information
njiddasalifu committed May 7, 2023
1 parent b219304 commit 46a034f
Show file tree
Hide file tree
Showing 282 changed files with 956,964 additions and 0 deletions.
59 changes: 59 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My List</title>
<link rel="stylesheet" href="/src/css/style.css">
<script type="module" src="/src/main.ts" defer></script>
</head>

<body>
<main>
<h1 class="offscreen">My List</h1>

<section class="newItemEntry">
<h2 class="offscreen">New Item Entry</h2>
<form class="newItemEntry__form" id="itemEntryForm">
<label for="newItem" class="offscreen">Enter a new to do item</label>
<input class="newItemEntry__input" id="newItem" type="text" maxlength="40" autocomplete="off"
placeholder="Add item" />
<button id="addItem" class="button newItemEntry__button" title="Add new item" aria-label="Add new item to list">
+
</button>
</form>
</section>

<section class="listContainer">
<header class="listTitle">
<h2 id="listName">List</h2>
<button id="clearItemsButton" class="button listTitle__button" title="Clear the list"
aria-label="Remove all items from the list">
Clear
</button>
</header>
<hr />
<ul id="listItems">
<!-- <li class="item">
<input type="checkbox" id="1">
<label for="1">eat</label>
<button class="button">X</button>
</li>
<li class="item">
<input type="checkbox" id="2">
<label for="2">sleep</label>
<button class="button">X</button>
</li>
<li class="item">
<input type="checkbox" id="3">
<label for="3">code</label>
<button class="button">X</button>
</li> -->
</ul>
</section>
</main>
</body>

</html>
1 change: 1 addition & 0 deletions node_modules/.bin/esbuild

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/nanoid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/rollup

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/tsc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/tsserver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/vite

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

266 changes: 266 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions node_modules/esbuild/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions node_modules/esbuild/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added node_modules/esbuild/bin/esbuild
Binary file not shown.
Loading

0 comments on commit 46a034f

Please sign in to comment.