Skip to content

Commit a5e65b7

Browse files
authored
default icon changed and footer added successfully (#291)
![Screenshot 2023-10-07 154915](https://github.com/Git21221/JS-beginner-projects/assets/69258452/a50a8cd8-3cea-4676-bb87-4a5b8f7f76d1) ### default icon changed ![Screenshot 2023-10-07 154818](https://github.com/Git21221/JS-beginner-projects/assets/69258452/25247a40-4507-4f6c-9ecd-524a1c6591a3)
2 parents 633d125 + 52bc161 commit a5e65b7

File tree

7 files changed

+13
-17
lines changed

7 files changed

+13
-17
lines changed
18.5 KB
Loading
-3.47 KB
Binary file not shown.
4.51 KB
Binary file not shown.
2.63 KB
Loading
2.98 KB
Loading

creditcardgenarator/src/App.js

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
11
// import logo from './logo.svg';
22
import './App.css';
3+
import { Footer } from './components/Footer';
34
import Form from './components/Form';
45

56
function App() {
67
return (
7-
// <div className="App">
8-
// <header className="App-header">
9-
// <img src={logo} className="App-logo" alt="logo" />
10-
// <p>
11-
// Edit <code>src/App.js</code> and save to reload.
12-
// </p>
13-
// <a
14-
// className="App-link"
15-
// href="https://reactjs.org"
16-
// target="_blank"
17-
// rel="noopener noreferrer"
18-
// >
19-
// Learn React
20-
// </a>
21-
// </header>
22-
// </div>
8+
<>
239
<Form></Form>
24-
10+
<Footer></Footer>
11+
</>
2512
);
2613
}
2714

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
export const Footer = () => {
4+
return (
5+
<div style={{textAlign:'center'}}>
6+
<h3 style={{color:'orange'}}>made with love by vaibhav wable</h3>
7+
</div>
8+
)
9+
}

0 commit comments

Comments
 (0)