Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit ad9d733

Browse files
added files
1 parent 08c8139 commit ad9d733

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Week2/homework/pokemon-app/index.html

Whitespace-only changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function main() {
2+
function fetchData() {
3+
const fetchPromise = fetch("https://ghibliapi.herokuapp.com/people");
4+
fetchPromise.then(response => {
5+
console.log(response);
6+
});
7+
}
8+
function addPokemonToDOM(){}
9+
}

0 commit comments

Comments
 (0)