Skip to content

Commit f679c76

Browse files
committed
add day 2
1 parent 20193da commit f679c76

File tree

204 files changed

+146533
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+146533
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# create-react-app exercise 2
2+
3+
This directory contains a react app bootstraped with create-react-app. It is mostly unaltered. Like
4+
usual, run npm install to get the dependencies installed
5+
6+
Your goal is to make the tests executed by the following command pass
7+
```
8+
npm test
9+
```
10+
11+
Alter the file src/App.js to make this test pass. To do so, get rid of all the jsx in the render
12+
method and render the following instead:
13+
```
14+
<div>Hello React</div>
15+
```

0 commit comments

Comments
 (0)