Moving all images to assets
This commit is contained in:
19
src/components/SkillSection/SkillSection.jsx
Normal file
19
src/components/SkillSection/SkillSection.jsx
Normal file
@ -0,0 +1,19 @@
|
||||
import React from "react";
|
||||
|
||||
import "./skillSection.scss";
|
||||
|
||||
const SkillSection = ({ skillsArr }) => {
|
||||
return (
|
||||
<div className="skill-section">
|
||||
<h3>Навыки:</h3>
|
||||
<ul>
|
||||
{skillsArr &&
|
||||
skillsArr.map((skills) => (
|
||||
<li key={skills.id}>{skills.skill.name}</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SkillSection;
|
Reference in New Issue
Block a user