diff --git a/app.js b/app.js new file mode 100644 index 00000000..0dbceb70 --- /dev/null +++ b/app.js @@ -0,0 +1,40 @@ +import './App.css' +import IncrementingButton from './problems/IncrementingButton'; +import WorkingWithArrays from './problems/WorkingWithArrays'; +import ProblemWrapper from './ProblemWrapper'; + +// Ground Rules: +// Anything goes... you can google it, you can ask questions, you can do basically anything except "Phone a Friend". + +// As a programmer, we are always dealing with things we do not know, and to be honest it's impossible to remember everything off the top of your head. +// So, we rely on documentation and our tools such as IDEs to help us be productive. I'm just here to watch you think and see how you process information. +// The worst thing you can do is: nothing. If you just sit there and stare, then there's no chance. If you struggle through something and talk through it, then +// I'm glad to facilitate. + +// Prerequisites: +// - npm install +// - npm run dev + +// TODO - first create a branch /interviews/{lastname-firstname} +// 1. Add a background color on the entire page to be #282c34 (text white) +// 2. Add a block of larger text on the page with your name +// 3. Add some spacing around the entire page +// 4. Add some padding or margin around each question +// 5. Make the description of the question bold and a little larger + +function App() { + return ( +
+

Patrick Brennan

+ + + + + + + +
+ ) +} + +export default App \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 00000000..8b720628 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + + Document + + + +

Hello!

+ + + + + + + \ No newline at end of file diff --git a/playground.js b/playground.js new file mode 100644 index 00000000..189b175a --- /dev/null +++ b/playground.js @@ -0,0 +1 @@ +// testing 321 \ No newline at end of file diff --git a/sandbox.js b/sandbox.js new file mode 100644 index 00000000..bd939744 --- /dev/null +++ b/sandbox.js @@ -0,0 +1,12 @@ +let age = 25; +let year = 2021; +console.log(age, year); + +age = 30; +console.log(age); + +const points = 100; +console.log(points); + +var score = 75; +console.log("Score: " + score); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 00000000..e69de29b