Skip to content

Instantly share code, notes, and snippets.

@houhr
Created January 20, 2017 03:35
Show Gist options
  • Save houhr/46ee057fa2b91e3bf73ce1bcbf266ca2 to your computer and use it in GitHub Desktop.
Save houhr/46ee057fa2b91e3bf73ce1bcbf266ca2 to your computer and use it in GitHub Desktop.
const Instructions = ({title, steps}) =>
<section className='instructions'>
<h2>{title}</h2>
{steps.map(step, i)=>
<p key={i}>step</p>
}
</section>
export default Instructions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment