// React import { View, Text, StyleSheet } from 'react-native'; // Util import { secondsToMMSS } from '../util/functions'; export const TimerMMSS = ({ title, seconds, style }) => { return ( {title} {secondsToMMSS(seconds)} ); }; const styles = StyleSheet.create({ container: { alignItems: 'center', justifyContent: 'center', } });