Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. import React from 'react';
  2. import BaseComponent from '../../../BaseComponent';
  3. import Countdown from '../../../Countdown';
  4. import '../games.css';
  5. class CountdownToRegister extends BaseComponent {
  6.  
  7. render() {
  8. return (
  9. <div className="noGames dark-background">
  10. The tournament is currently closed.
  11. <br />
  12. Check back when registration opens for the next tournament, in:
  13. <Countdown date={this.props.registrationTime} location='dash'/>
  14. </div>
  15. );
  16. }
  17.  
  18.  
  19. }
  20. export default CountdownToRegister;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement