mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-20 11:41:38 +10:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import React, { memo } from 'react';
|
|
import AuthModal from './AuthModal';
|
|
import ResumeModal from './ResumeModal';
|
|
import AwardModal from './sections/AwardModal';
|
|
import CertificateModal from './sections/CertificateModal';
|
|
import EducationModal from './sections/EducationModal';
|
|
import ExportModal from './sections/ExportModal';
|
|
import HobbyModal from './sections/HobbyModal';
|
|
import ImportModal from './sections/ImportModal';
|
|
import LanguageModal from './sections/LanguageModal';
|
|
import ProjectModal from './sections/ProjectModal';
|
|
import ReferenceModal from './sections/ReferenceModal';
|
|
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 />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default memo(ModalRegistrar);
|