0.1.1 • Published 6 years ago

react-time-limit v0.1.1

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

react-time-limit

A React component to conditionally display elements based on date/time. Useful for displaying things like limited-time promotions so you don't have to redeploy or roll back your app on specific dates.

Installation

With Yarn:

yarn add react-time-limit

With npm:

npm install --save react-time-limit

Usage

import TimeLimit from 'react-time-limit'

...

<TimeLimit to='2018-01-20'>Show Before Target Date</TimeLimit>
<TimeLimit from='2018-01-20'>Show After Target Date</TimeLimit>
<TimeLimit from='2018-01-10' to='2018-01-15'>Show Between Two Target Dates</TimeLimit>

Dates can be supplied as any valid new Date value. (Date docs)