mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 12:27:17 +00:00
prettier issue solved
This commit is contained in:
@@ -10,12 +10,16 @@ const ListItem = ({ time, position, company, link }) => (
|
|||||||
></div>
|
></div>
|
||||||
<div className="my-0.5 text-xs">{time}</div>
|
<div className="my-0.5 text-xs">{time}</div>
|
||||||
<h3 className="font-semibold">{position}</h3>
|
<h3 className="font-semibold">{position}</h3>
|
||||||
<div className="mb-4 font-normal"><a
|
<div className="mb-4 font-normal">
|
||||||
|
<a
|
||||||
href={link}
|
href={link}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
className="flex justify-start py-2 px-1 items-center"
|
className="flex justify-start py-2 px-1 items-center"
|
||||||
>{company}</a></div>
|
>
|
||||||
|
{company}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -70,7 +74,9 @@ const Experience = ({ experiences, loading }) => {
|
|||||||
time={`${experience.from} - ${experience.to}`}
|
time={`${experience.from} - ${experience.to}`}
|
||||||
position={experience.position}
|
position={experience.position}
|
||||||
company={experience.company}
|
company={experience.company}
|
||||||
link={experience.companyLink ? experience.companyLink: null}
|
link={
|
||||||
|
experience.companyLink ? experience.companyLink : null
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</Fragment>
|
</Fragment>
|
||||||
|
|||||||
Reference in New Issue
Block a user