From 3aa514d47c7512b745a9059fdcd9b35bca2f23e1 Mon Sep 17 00:00:00 2001 From: Karimah Reavis Date: Tue, 11 Oct 2022 12:15:15 -0400 Subject: [PATCH 1/3] answered 5 questions --- questions.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/questions.md b/questions.md index 5afcf60..d6e0f1c 100644 --- a/questions.md +++ b/questions.md @@ -3,29 +3,29 @@ What year did Brendan Eich create JavaScript? ``` - +Brendan Eich created Javascript in 1995 ``` What does "ES6" stand for? ``` - +ECMAScript 6 ``` What company famously used the phrase "Don't be evil" in their code of conduct? ``` - +Google ``` What English mathematician and writer is often regarded as the first computer programmer? ``` - +Augusta Ada King-Noel ``` Who is the "Turing machine" named after? ``` - +Alan Turing ``` From 293611d45851c6d7ca99d8c25f3aec84064c7eb9 Mon Sep 17 00:00:00 2001 From: Karimah Reavis Date: Tue, 11 Oct 2022 12:19:12 -0400 Subject: [PATCH 2/3] testing lab --- questions.md | 1 + 1 file changed, 1 insertion(+) diff --git a/questions.md b/questions.md index d6e0f1c..3f09440 100644 --- a/questions.md +++ b/questions.md @@ -29,3 +29,4 @@ Who is the "Turing machine" named after? ``` Alan Turing ``` +hello lab \ No newline at end of file From e000eec10a2cc7fce1e842695f02175aaa106fb8 Mon Sep 17 00:00:00 2001 From: Karimah Reavis Date: Wed, 27 Sep 2023 03:49:20 -0400 Subject: [PATCH 3/3] Always write a commit message to explain what you changed in your project files --- components/Header.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 components/Header.js diff --git a/components/Header.js b/components/Header.js new file mode 100644 index 0000000..9228929 --- /dev/null +++ b/components/Header.js @@ -0,0 +1,13 @@ +function Header() { + + return( + +
+

Hello World

+

I am making changes to my repository.

+ +
+ ); +} + +export default Header; \ No newline at end of file