Skip to content

JDLT-Ltd/react-countdown-moment

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-countdown-moment

React countdown timer text using momentjs.

Demo

https://lab.miguelmota.com/react-countdown-moment

Install

npm install react-countdown-moment

Usage

import React from 'react'
import ReactDOM from 'react-dom'
import moment from 'moment'
import Countdown from 'react-countdown-moment'

const endDate = moment().add(2, 'hours')

ReactDOM.render(
  <Countdown endDate={endDate} />,
  document.getElementById('root')
)

License

MIT

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.6%
  • HTML 30.4%