Skip to content

Commit a8cc7f1

Browse files
committed
Updated main.js
1 parent ba3783c commit a8cc7f1

File tree

7 files changed

+112
-116
lines changed

7 files changed

+112
-116
lines changed

news-app/.eslintcache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\index.js":"1","C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\App.js":"2","C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Header.js":"3","C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Footer.js":"4","C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Main.js":"5"},{"size":220,"mtime":1627455921840,"results":"6","hashOfConfig":"7"},{"size":284,"mtime":1627456020544,"results":"8","hashOfConfig":"7"},{"size":514,"mtime":1627455223678,"results":"9","hashOfConfig":"7"},{"size":193,"mtime":1627455132750,"results":"10","hashOfConfig":"7"},{"size":1070,"mtime":1627456157616,"results":"11","hashOfConfig":"7"},{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1593bgn",{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"18","messages":"19","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"20","messages":"21","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\index.js",[],"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\App.js",[],"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Header.js",[],"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Footer.js",[],"C:\\Users\\Welcome\\Desktop\\LGMsoc'21\\Web-dev-mini-projects\\news-app\\src\\Components\\Main.js",[]]

news-app/package-lock.json

Lines changed: 105 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

news-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@testing-library/user-event": "^12.8.3",
99
"react": "^17.0.2",
1010
"react-dom": "^17.0.2",
11-
"react-scripts": "4.0.3",
11+
"react-scripts": "4.0.1",
1212
"web-vitals": "^1.1.2"
1313
},
1414
"scripts": {

news-app/public/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" referrerpolicy="no-referrer" />
28+
<title>News React App</title>
2829
</head>
2930
<body>
3031
<noscript>You need to enable JavaScript to run this app.</noscript>

news-app/src/App.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import './App.css';
2-
import Main from './components/Main';
3-
import Header from './components/Header';
4-
import Footer from "./components/Footer";
2+
import Main from './Components/Main';
3+
import Header from './Components/Header';
4+
import Footer from "./Components/Footer";
55

66
function App() {
77
return (

0 commit comments

Comments
 (0)