From 2ffc8781ad57c1cfe6cc14d170a57c16777ea634 Mon Sep 17 00:00:00 2001 From: momin-riyadh Date: Sat, 3 Oct 2020 22:23:42 +0600 Subject: [PATCH] index.js and index.html file has been update with minor fix --- .idea/.gitignore | 5 +++++ .idea/30-Days-Of-React.iml | 12 ++++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .../30-days-of-react_boilerplate/public/index.html | 8 +++----- .../30-days-of-react_boilerplate/src/index.js | 6 +++--- 8 files changed, 48 insertions(+), 8 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/30-Days-Of-React.iml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml 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'