Skip to content

SquareJulia/Resume

Repository files navigation

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[];
};

About

A resume template with React Native.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published