Skip to content

Instantly share code, notes, and snippets.

@karenying
Last active June 16, 2020 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karenying/4ea450cb71eff46428cff24e9e12c2c4 to your computer and use it in GitHub Desktop.
Save karenying/4ea450cb71eff46428cff24e9e12c2c4 to your computer and use it in GitHub Desktop.
return (
<div className='App'>
<Arrow
direction='left'
clickFunction={() => onArrowClick('left')}
/>
<Slide in={slideIn} direction={slideDirection}>
<div>
<CarouselSlide content={content} />
</div>
</Slide>
<Arrow
direction='right'
clickFunction={() => onArrowClick('right')}
/>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment