-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.jsx
26 lines (26 loc) · 844 Bytes
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React from "react";
import "./styles.css";
import Header from "./Header";
import Footer from "./Footer";
import Note from "./Note";
function App() {
return (
<div>
<Header />
<Footer />
<Note
name="Javascript and React.js"
desc="This was an amazing bootcamp taken up by Shaurya sir. We did everything from Scratch including JavaScript, React.js and HTML"
/>
<Note
name="Web dev with bootstrap"
desc="This was an amazing bootcamp taken up by Shaurya sir. We did everything from Scratch including CSS, HTML and bootstrap"
/>
<Note
name="Python and machine learning"
desc="This was an amazing bootcamp taken up by Shaurya sir. We did everything from Scratch including Python and machine learning"
/>
</div>
);
}
export default App;