Skip to content

Instantly share code, notes, and snippets.

@Kristian-Roopnarine
Created February 13, 2020 20:19
Show Gist options
  • Save Kristian-Roopnarine/edeb5a17f1785f0b218ddd76c9dc7aa4 to your computer and use it in GitHub Desktop.
Save Kristian-Roopnarine/edeb5a17f1785f0b218ddd76c9dc7aa4 to your computer and use it in GitHub Desktop.
const SkillsList = (props) => {
return (
<div className="ui list">
{props.skills.map(skill => (
<div className="item" key={skill}>
{skill}
</div>
))}
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment