This commit is contained in:
Carlos Ragnar Kárason Colon
2019-02-26 17:04:42 +00:00
3 changed files with 11 additions and 18 deletions

View File

@@ -25,11 +25,11 @@ This workshop starts as a very high level introduction to the core principles of
$ git clone https://github.com/Microsoft/frontend-bootcamp.git
$ cd frontend-bootcamp
$ npm install
// For Day 1, Steps 1-3
$ npm run static
$ npm run static
// For the rest of the steps
$ npm start
$ npm start
```
## Table Of Contents
@@ -78,6 +78,13 @@ Demo and Exercises are combined
- [React Docs](https://reactjs.org/docs/getting-started.html)
- [Thinking in React](https://reactjs.org/docs/thinking-in-react.html)
### Follow the Authors!
If you are interested in JavaScript, TypeScript, React, Redux, Design Systems, follow us on Twitter:
@kenneth_chau
@micahgodbolt
# Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a

View File

@@ -1,14 +0,0 @@
<!DOCTYPE html>
<html>
<head></head>
<body>
<header>
<h1></h1>
<div class="addTodo"></div>
<nav></nav>
</header>
<main class="filter"></main>
<footer></footer>
</body>
</html>

View File

@@ -48,7 +48,7 @@
function updateRemaining() {
const remaining = document.querySelector('.remaining');
const todos = document.querySelectorAll('.todo');
const todos = document.querySelectorAll('.todo').length;
remaining.innerText = todos;
}