Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

miguelmota/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