Roughing out the demo app

This commit is contained in:
Nate Taylor
2019-10-23 07:41:03 -05:00
parent 5bc58a2d40
commit 94be06d3c4
2841 changed files with 274065 additions and 2 deletions

23
index.html Normal file
View File

@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JavaScript Promises and Async Programming</title>
<meta name="author" content="Nate Taylor" />
<link rel="stylesheet" href="./src/tachyons.min.css" />
<link rel="stylesheet" href="./src/site.css" />
<script src="./src/axios.min.js"></script>
</head>
<body>
<h1 class="ml4">JavaScript Promises and Async Programming</h1>
<div class="flex flex-column ml4">
<a class="pb3" href="/understanding">Understanding Promises</a>
<a class="pb3" href="/consuming">Consuming Promises</a>
<a class="pb3" href="/creating">Creating Promises</a>
<a class="pb3" href="/iterating">Iterating with Async and Await</a>
</div>
</body>
</html>