Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 762 Bytes

README.md

File metadata and controls

32 lines (29 loc) · 762 Bytes

Resume with RN

参考

TypeScript & React TodoMVC Example

效果

数据类型

type BaseItemType = {
  from: string;
  to: string;
  where: string;
  what: string;
};
// 技能
type Skill = { 
    title: string; percentage: number 
};
// 项目
type Project = { name: string; description?: string; details: string[] };
// 实习经历
type Intern = BaseItemType & {
  description?: string;
  details: string[];
  projects?: Project[];
};