From 77a736955889415c5ae38a98f9ce056d187cb330 Mon Sep 17 00:00:00 2001 From: diegobaena89 Date: Tue, 17 May 2022 14:59:38 -0300 Subject: [PATCH] exercises day 02 --- solutions/day-01/Level2.js | 0 solutions/day-01/countries.js | 13 +++ solutions/day-01/index.html | 2 +- solutions/day-01/web_techs.js | 9 ++ solutions/day-02/index.html | 198 ++++++++++++++++++++++++++++++++++ 5 files changed, 221 insertions(+), 1 deletion(-) create mode 100644 solutions/day-01/Level2.js create mode 100644 solutions/day-01/countries.js create mode 100644 solutions/day-01/web_techs.js create mode 100644 solutions/day-02/index.html diff --git a/solutions/day-01/Level2.js b/solutions/day-01/Level2.js new file mode 100644 index 0000000..e69de29 diff --git a/solutions/day-01/countries.js b/solutions/day-01/countries.js new file mode 100644 index 0000000..f00a89e --- /dev/null +++ b/solutions/day-01/countries.js @@ -0,0 +1,13 @@ +const countries = [ + 'Albania', + 'Bolivia', + 'Canada', + 'Denmark', + 'Ethiopia', + 'Finland', + 'Germany', + 'Hungary', + 'Ireland', + 'Japan', + 'Kenya', + ] \ No newline at end of file diff --git a/solutions/day-01/index.html b/solutions/day-01/index.html index 984d787..c9629fe 100644 --- a/solutions/day-01/index.html +++ b/solutions/day-01/index.html @@ -4,6 +4,6 @@ 30DaysOfScript:Internal Script - + \ No newline at end of file diff --git a/solutions/day-01/web_techs.js b/solutions/day-01/web_techs.js new file mode 100644 index 0000000..24e835d --- /dev/null +++ b/solutions/day-01/web_techs.js @@ -0,0 +1,9 @@ +const webTechs = [ + 'HTML', + 'CSS', + 'JavaScript', + 'React', + 'Redux', + 'Node', + 'MongoDB', + ] \ No newline at end of file diff --git a/solutions/day-02/index.html b/solutions/day-02/index.html new file mode 100644 index 0000000..f590c67 --- /dev/null +++ b/solutions/day-02/index.html @@ -0,0 +1,198 @@ + + + + + + + + 30 Days Of React Challenge + + + + +
+ + + + + + + \ No newline at end of file