diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..b58b603
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,5 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/30-Days-Of-React.iml b/.idea/30-Days-Of-React.iml
new file mode 100644
index 0000000..24643cc
--- /dev/null
+++ b/.idea/30-Days-Of-React.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..a55e7a1
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..24eb271
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..4839a89
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/03_Day_Setting_Up/30-days-of-react_boilerplate/public/index.html b/03_Day_Setting_Up/30-days-of-react_boilerplate/public/index.html
index eb6b4c2..3aafbc8 100644
--- a/03_Day_Setting_Up/30-days-of-react_boilerplate/public/index.html
+++ b/03_Day_Setting_Up/30-days-of-react_boilerplate/public/index.html
@@ -60,14 +60,12 @@
header {
background-color: #61dbfb;
- padding: 25;
- padding: 10px;
+ padding: 10px;
}
main {
- padding: 10px;
- padding-bottom: 60px;
- /* Height of the footer */
+ padding: 10px 10px 60px;
+ /* Height of the footer */
}
ul {
diff --git a/03_Day_Setting_Up/30-days-of-react_boilerplate/src/index.js b/03_Day_Setting_Up/30-days-of-react_boilerplate/src/index.js
index bc54327..68fd3dc 100644
--- a/03_Day_Setting_Up/30-days-of-react_boilerplate/src/index.js
+++ b/03_Day_Setting_Up/30-days-of-react_boilerplate/src/index.js
@@ -1,8 +1,8 @@
// index.js
-import React from 'react'
-import ReactDOM from 'react-dom'
+import React from 'react';
+import ReactDOM from 'react-dom';
// To get the root element from the HTML document
-import asabenehImage from './images/asabeneh.jpg'
+import asabenehImage from './images/asabeneh.jpg';
// JSX element, header
const welcome = 'Welcome to 30 Days Of React'
const title = 'Getting Started React'