💻 | Working on review

This commit is contained in:
2021-03-28 13:06:16 +02:00
parent 17e904e74a
commit 02534e8520
22 changed files with 855 additions and 907 deletions

40
@types/types.ts Normal file
View File

@@ -0,0 +1,40 @@
interface FormData {
email: string,
name: string
}
interface InfoData {
age: number
hiring: {
status: string,
color: string
}
}
interface Skill {
title: string,
color: string,
cover: string,
slug: string
}
interface Experience {
slug: string,
title: string,
company: string,
location: string,
begin_date: string,
end_date: string
}
interface Formation {
slug: string,
title: string,
description: string,
location: string,
begin_date: string,
end_date: string
}
export { FormData, InfoData, Skill, Experience, Formation }