import { GoPrimitiveDot } from 'react-icons/go'; import { skeleton } from '../../helpers/utils'; import config from '../../ezprofile.config'; const Experience = ({ loading }) => { const renderSkeleton = () => { let array = []; for (let index = 0; index < 2; index++) { array.push(
  • {skeleton({ width: 'w-2', height: 'h-2', className: 'mr-2' })}
    {skeleton({ width: 'w-9/12', height: 'h-4', className: 'mb-2', })}
    {skeleton({ width: 'w-6/12', height: 'h-4', className: 'mb-2', })}
    {skeleton({ width: 'w-6/12', height: 'h-3' })}
  • ); } return array; }; return ( <> {typeof config.experiences !== 'undefined' && config.experiences.length !== 0 && (
    )} ); }; export default Experience;