This is the simple carousel using React + Typescript + styled-component.
# Install package
$ yarn add reslick
# Install peerDependencies
$ yarn add --dev react react-dom styled-components
import React from 'react'
import { Carousel, CarouselItem } from 'reslick'
const YourComponent: React.FC = props => {
//...
return (
<Carousel displayCount={4}>
<CarouselItem src="..." alt="..." />
</Carousel>
)
}
Kohei Oyama (a.k.a hey3)