12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
/* eslint-disable */
|
|
const cn = {
|
|
headings: {
|
|
contact: '联系方式',
|
|
experience: '工作经历',
|
|
education: '教育经历',
|
|
skills: '技能专长',
|
|
about: '自我介绍'
|
|
}
|
|
};
|
|
export default cn;
|