From 39a97afb225ba7ed821a9a76ea8e6588ef8fb068 Mon Sep 17 00:00:00 2001 From: vigneshkanna Date: Fri, 14 Oct 2022 18:06:57 +0530 Subject: [PATCH] prettier issue solved --- src/components/experience/index.jsx | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/components/experience/index.jsx b/src/components/experience/index.jsx index cefd8a6..afb6ef5 100644 --- a/src/components/experience/index.jsx +++ b/src/components/experience/index.jsx @@ -2,7 +2,7 @@ import { skeleton } from '../../helpers/utils'; import { Fragment } from 'react'; import PropTypes from 'prop-types'; -const ListItem = ({ time, position, company, link }) => ( +const ListItem = ({ time, position, company, link }) => (
  • ( >
    {time}

    {position}

    -
    {company}
    +
    + + {company} + +
  • ); @@ -70,7 +74,9 @@ const Experience = ({ experiences, loading }) => { time={`${experience.from} - ${experience.to}`} position={experience.position} company={experience.company} - link={experience.companyLink ? experience.companyLink: null} + link={ + experience.companyLink ? experience.companyLink : null + } /> ))}