* Moving files to their new homes. Subsequent commit will wire everything up again. * Relink files and split stylesheet. Requires adding resolve-url-loader to fix sass import relativity. * Remove browserslist warning. * Remove the need for ProfileMain * Fix test issues - needed thunk.
29 lines
288 B
JavaScript
29 lines
288 B
JavaScript
const EDUCATION_LEVELS = [
|
|
'p',
|
|
'm',
|
|
'b',
|
|
'a',
|
|
'hs',
|
|
'jhs',
|
|
'el',
|
|
'none',
|
|
'o',
|
|
];
|
|
|
|
const SOCIAL = {
|
|
linkedin: {
|
|
title: 'LinkedIn',
|
|
},
|
|
twitter: {
|
|
title: 'Twitter',
|
|
},
|
|
facebook: {
|
|
title: 'Facebook',
|
|
},
|
|
};
|
|
|
|
export {
|
|
EDUCATION_LEVELS,
|
|
SOCIAL,
|
|
};
|