import React from "react"; import "./catalogPersonCard.scss"; export const CatalogPersonCard = ({ img, name, salary, category, skills, level, description }) => { return (
avatar {level}
{name} {salary} / час

Разработка: {category}

{skills.map((item, index) => { return (
{item}
); })}

{description}

); }; export default CatalogPersonCard;