$ npm install react-native-countdown-reset --save
$ react-native link react-native-countdown-reset
import React from "react";
import CountdownReset from 'react-native-countdown-reset';
const CountdownReset = props => {
return(
<CountdownReset
until={5}
onFinish={() => alert('finished')}
onPress={() => alert('hello')}
size={20}
/>
);
};