Skip to content

Commit 4ab4242

Browse files
committed
Added footer
1 parent 3eddfa9 commit 4ab4242

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

news-app/src/Components/Footer.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
footer {
2+
height: 80px;
3+
background-color: rgb(228, 228, 228);
4+
display: flex;
5+
align-items: center;
6+
justify-content: center;
7+
color: #111;
8+
}

news-app/src/Components/Footer.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import "./Footer.css";
2+
3+
function Footer() {
4+
return(
5+
<footer>
6+
<p>Copyright © 2021 | Riya Gupta | News App</p>
7+
</footer>
8+
);
9+
}
10+
11+
export default Footer

0 commit comments

Comments
 (0)