- bumped version to 2.3.3

- fixed text alignment issues
- updated dependencies
- added ukranian language
This commit is contained in:
Amruth Pillai
2020-12-09 10:40:27 +05:30
parent 88a3fe5148
commit df71b86028
32 changed files with 942 additions and 1021 deletions

View File

@ -14,25 +14,23 @@ import SkillModal from './sections/SkillModal';
import SocialModal from './sections/SocialModal';
import WorkModal from './sections/WorkModal';
const ModalRegistrar = () => {
return (
<>
<AuthModal />
<ResumeModal />
<SocialModal />
<WorkModal />
<EducationModal />
<ProjectModal />
<AwardModal />
<CertificateModal />
<SkillModal />
<HobbyModal />
<LanguageModal />
<ReferenceModal />
<ImportModal />
<ExportModal />
</>
);
};
const ModalRegistrar = () => (
<>
<AuthModal />
<ResumeModal />
<SocialModal />
<WorkModal />
<EducationModal />
<ProjectModal />
<AwardModal />
<CertificateModal />
<SkillModal />
<HobbyModal />
<LanguageModal />
<ReferenceModal />
<ImportModal />
<ExportModal />
</>
);
export default memo(ModalRegistrar);