/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, {Component} from 'react'; import { Button, StyleSheet, Text, View, AppRegistry, } from 'react-native'; import Carousel from 'react-native-carousel-view'; export default class example extends Component { constructor(props) { super(props); this.state = {page: 0}; (this: any)._setPage = this._setPage.bind(this); } _setPage(page: number) { this.setState({ page, }); } render() { return (