- implement work experience

- implement education
- show dynamic names in layout
This commit is contained in:
Amruth Pillai
2020-07-08 16:49:26 +05:30
parent bee6a40e9f
commit 922db70107
33 changed files with 822 additions and 169 deletions

View File

@ -1,7 +1,9 @@
import React, { Fragment } from "react";
import AuthModal from "./AuthModal";
import ResumeModal from "./ResumeModal";
import EducationModal from "./sections/EducationModal";
import SocialModal from "./sections/SocialModal";
import WorkModal from "./sections/WorkModal";
const ModalRegistrar = () => {
return (
@ -9,6 +11,8 @@ const ModalRegistrar = () => {
<AuthModal />
<ResumeModal />
<SocialModal />
<WorkModal />
<EducationModal />
</Fragment>
);
};