Skip to content

Instantly share code, notes, and snippets.

Created January 29, 2018 15:52
Show Gist options
  • Select an option

  • Save anonymous/47ae63d615ca7afc1c0636d64ca38f12 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/47ae63d615ca7afc1c0636d64ca38f12 to your computer and use it in GitHub Desktop.
import React from 'react';
const Step = (leftAction, rightAction, { text, leftBtn, rightBtn }) => {
return (
<div>
<div>
{ text }
</div>
<div>
<span onClick={ leftAction } >
{ leftBtn.text }
</span>
<span onClick={ rightAction }>
{ rightBtn.text }
</span>
</div>
</div>
);
};
export default Step;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment