14 lines
		
	
	
		
			351 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			351 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Countdown from 'react-countdown'
 | |
| 
 | |
| export default function SimpleCountdown ({ className, onComplete, date }) {
 | |
|   return (
 | |
|     <span className={className}>
 | |
|       <Countdown
 | |
|         date={date}
 | |
|         renderer={props => <span> {props.formatted.minutes}:{props.formatted.seconds}</span>}
 | |
|         onComplete={onComplete}
 | |
|       />
 | |
|     </span>
 | |
|   )
 | |
| }
 |