I need a component exactly like below picture.
image code is here but i need that codes for typescript. and also copy codes not working! any body can help with an example in https://codesandbox.io/.
thanks a lot
I need a component exactly like below picture.
image code is here but i need that codes for typescript. and also copy codes not working! any body can help with an example in https://codesandbox.io/.
thanks a lot
Recently I used react-multi-carousel with typescript.
Maybe that carousel's parent style is like this.
display: flex;
Carousel doesn't work with that style so you should change the parent style. It's not a problem caused by Typescript
display: block
or add this style.min-width: 400px; max-width: 400px;
it works for me.