import React from 'react'; import { View } from 'react-native'; import Text from './text'; interface PageIndicatorProps { current: number; total: number; } const PageIndicator = ({ current, total }: PageIndicatorProps) => { return ( {current} / {total} ); }; export default PageIndicator;