Skip to content

Commit 180a030

Browse files
authored
Merge pull request YurisCodingClub#25 from MusfiqDehan/main
Add empty `CV.js` component in DIN A4 format to store values (YurisCodingClub#22)
2 parents 47e4fee + 499e8c9 commit 180a030

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import DownloadButton from "./components/DownloadButton";
44
import ProgrammingExpertise from "./components/ProgrammingExpertise";
55
import Education from "./components/Education";
66
import PersonalInformation from "./components/PersonalInformation";
7+
import CV from './components/CV';
78

89
function App() {
910
return (
@@ -13,6 +14,7 @@ function App() {
1314
<ProgrammingExpertise />
1415
<Education />
1516
<PersonalInformation />
17+
<CV />
1618
</>
1719
);
1820
}

src/components/CV.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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;

0 commit comments

Comments
 (0)