1.0.6 • Published 4 years ago

react-native-countdown-reset v1.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-native-countdown-reset

Getting started

$ npm install react-native-countdown-reset --save

Mostly automatic installation

$ react-native link react-native-countdown-reset

Usage

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}
        />
    );
};