UNPKG

react-native-copilot

Version:

Make an interactive step by step tour guide for you react-native app

20 lines (15 loc) 362 B
// @flow import React from 'react'; import { View, Text } from 'react-native'; import styles from './style'; type Props = { currentStepNumber: number, }; const StepNumber = ({ currentStepNumber, }: Props) => ( <View style={styles.stepNumber}> <Text style={[styles.stepNumberText]}>{currentStepNumber}</Text> </View> ); export default StepNumber;