mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-15 17:21:35 +10:00
24 lines
541 B
JavaScript
24 lines
541 B
JavaScript
import profile from './profile.json';
|
|
import objective from './objective.json';
|
|
import work from './work.json';
|
|
import education from './education.json';
|
|
import awards from './awards.json';
|
|
import certifications from './certifications.json';
|
|
import skills from './skills.json';
|
|
import languages from './languages.json';
|
|
import references from './references.json';
|
|
import extras from './extras.json';
|
|
|
|
export default {
|
|
profile,
|
|
objective,
|
|
work,
|
|
education,
|
|
awards,
|
|
certifications,
|
|
skills,
|
|
languages,
|
|
references,
|
|
extras,
|
|
};
|