64 | {isOwner &&
}
65 |
66 | Full name: {profile.fullName}
67 |
68 |
69 | Looking for a job: {profile.lookingForAJob ? "yes" : "no"}
70 |
71 | {profile.lookingForAJob &&
72 |
73 | My professional skills: {profile.lookingForAJobDescription}
74 |
75 | }
76 |
77 |
78 | About me: {profile.aboutMe}
79 |
80 |
81 | Contacts: {
82 | Object
83 | .keys(profile.contacts)
84 | .map((key) => {
85 | return
86 | })}
87 |
88 |
89 | }
90 |
91 |
92 | type ContactsPropsType = {
93 | contactTitle: string
94 | contactValue: string
95 | }
96 | const Contact: React.FC