Skip to content

Instantly share code, notes, and snippets.

@Kristian-Roopnarine
Created February 13, 2020 20:47
Show Gist options
  • Save Kristian-Roopnarine/318e95a44540185709d5ab811e4d15b3 to your computer and use it in GitHub Desktop.
Save Kristian-Roopnarine/318e95a44540185709d5ab811e4d15b3 to your computer and use it in GitHub Desktop.
import React from 'react'
import SkillsList from './SkillsList'
const SkillsCard = (props) => {
return (
<div className="card">
<div className ="content">
<div className= "center aligned header">
{props.skills.name}
</div>
<div classname="center aligned">
<SkillsList skills={props.skills.skills} />
</div>
</div>
</div>
)
}
export default SkillsCard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment