File tree Expand file tree Collapse file tree 8 files changed +55
-45
lines changed
Expand file tree Collapse file tree 8 files changed +55
-45
lines changed Original file line number Diff line number Diff line change 1- import ' ./App.css' ;
2- import Header from "./components/Header/Header " ;
1+ import " ./App.css" ;
2+ import Header from "./components/Header" ;
33import DownloadButton from "./components/DownloadButton" ;
44import ProgrammingExpertise from "./components/ProgrammingExpertise" ;
5- import Education from ' ./components/Education' ;
5+ import Education from " ./components/Education" ;
66
77function App ( ) {
88 return (
Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+
3+ const DownloadButton = ( ) => {
4+ return (
5+ < button
6+ style = { {
7+ display : "flex" ,
8+ alignItems : "center" ,
9+ } }
10+ >
11+ < img
12+ src = "/images/download.svg"
13+ alt = ""
14+ style = { {
15+ padding : "5px" ,
16+ } }
17+ > </ img >
18+ Download
19+ </ button >
20+ ) ;
21+ } ;
22+
23+ export default DownloadButton ;
Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+ import "../Header.css" ;
3+
4+ const Header = ( ) => {
5+ return (
6+ < div >
7+ < nav >
8+ < div className = "logo" >
9+ < img
10+ className = "imagelogo"
11+ src = "https://logo.clearbit.com/spotify.com"
12+ alt = "logo"
13+ />
14+ </ div >
15+ < div className = "name" >
16+ < h2 > Name</ h2 >
17+ </ div >
18+ </ nav >
19+ </ div >
20+ ) ;
21+ } ;
22+
23+ export default Header ;
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- import React from ' react' ;
2- import ReactDOM from ' react-dom/client' ;
3- import ' ./index.css' ;
4- import App from ' ./App' ;
5- import reportWebVitals from ' ./reportWebVitals' ;
1+ import React from " react" ;
2+ import ReactDOM from " react-dom/client" ;
3+ import " ./index.css" ;
4+ import App from " ./App" ;
5+ import reportWebVitals from " ./reportWebVitals" ;
66
7- const root = ReactDOM . createRoot ( document . getElementById ( ' root' ) ) ;
7+ const root = ReactDOM . createRoot ( document . getElementById ( " root" ) ) ;
88root . render (
99 < React . StrictMode >
1010 < App />
You can’t perform that action at this time.
0 commit comments