I am trying to use react-slick for displaying my custom Components inside carousel:
<Slider {...settings}>
<Hello />
<Hello />
</Slider>
But seems that react-slick doens't support such way of using.
JsFiddle demo
It works, it's all about styling the carousel. I've updated your fiddle to show that it works: https://jsfiddle.net/ox1ujxa4/1/
Just some minor styling made:
<div style={{display: 'inline-block', width: 500}}>
Hello
</div>