Horizontal slide for react

Hi there,

Does anyone has a working implementation for horizontal sliding using React? There a tons of working examples for Angular but can’t find any for React. Here’s an example of what I’m trying to accomplish:

And here’s a code snippet for the Angular version that I’m trying to implement for React:

<ion-slides pager="true" [options]="slideOpts">
    <ion-slide *ngFor="let item of items">
        <h1>some slide</h1>
    </ion-slide>
</ion-slides>

Couldn’t find a way to implement ngFor in React.

Thanks!