1.1.1 • Published 7 years ago

react-awesome-countdowntimer v1.1.1

Weekly downloads
65
License
MIT
Repository
github
Last release
7 years ago

react-awesome-countdowntimer

An awesome countdowntimer only developed for react, but coded so nicely can be understood and used for other libraries too. Basically a tick() function that runs when component mounts with an interval of 1000ms setInterval(this.tick, 1000).

Table of Contents

Installation

npm install --save react-awesome-countdowntimer
Dependencies
  • moment.js - This component depends on momen.js library so you should have this installed in you project!
Properties
PropertyTypeDescriptionWorkingExample
endDateobjectTakes date & time when timer has to endYesendDate(moment('06/18/2018 15:00:00'))

Example

import React from 'react';
import moment from 'moment';
import CountdownTimer from 'react-awesome-countdowntimer';

class SimpleComponent extends React.Component {
    return (
        <CountdownTimer endDate={moment('06/12/2018')}/>
    );
  }
}

### Example App
```bash
cd example-app/

then

yarn
yarn start