File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import DownloadButton from "./components/DownloadButton";
44import ProgrammingExpertise from "./components/ProgrammingExpertise" ;
55import Education from "./components/Education" ;
66import PersonalInformation from "./components/PersonalInformation" ;
7+ import CV from './components/CV' ;
78
89function App ( ) {
910 return (
@@ -13,6 +14,7 @@ function App() {
1314 < ProgrammingExpertise />
1415 < Education />
1516 < PersonalInformation />
17+ < CV />
1618 </ >
1719 ) ;
1820}
Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+
3+ const CV = ( ) => {
4+ return (
5+ < div
6+ style = { {
7+ width : "calc(2480px/4)" ,
8+ height : "calc(3508px/4)" ,
9+ border : "2px solid black" ,
10+ margin : "50px" ,
11+ padding : "20px" ,
12+ } }
13+ >
14+ </ div >
15+ ) ;
16+ } ;
17+
18+ export default CV ;
You can’t perform that action at this time.
0 commit comments