Skip to content
This repository was archived by the owner on Apr 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import DownloadButton from "./components/DownloadButton";
import ProgrammingExpertise from "./components/ProgrammingExpertise";
import Education from "./components/Education";
import PersonalInformation from "./components/PersonalInformation";
import CV from './components/CV';

function App() {
return (
Expand All @@ -13,6 +14,7 @@ function App() {
<ProgrammingExpertise />
<Education />
<PersonalInformation />
<CV />
</>
);
}
Expand Down
18 changes: 18 additions & 0 deletions src/components/CV.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from "react";

const CV = () => {
return (
<div
style={{
width: "calc(2480px/4)",
height: "calc(3508px/4)",
border: "2px solid black",
margin: "50px",
padding: "20px",
}}
>
</div>
);
};

export default CV;