Remove useless extra container and import from App component.
parent
b87e1e7577
commit
1d45cae318
|
@ -3,7 +3,6 @@ import PropTypes from 'prop-types';
|
|||
import moment from 'moment-timezone';
|
||||
import Countdown from './Countdown';
|
||||
import Header from './Header';
|
||||
import ProgressCircle from './ProgressCircle';
|
||||
import getUpcomingDate from './getUpcomingDate';
|
||||
|
||||
import style from './App.sass';
|
||||
|
@ -61,14 +60,12 @@ class App extends React.Component {
|
|||
</Header>
|
||||
|
||||
<div className={style.content}>
|
||||
<div className={style.contentContainer}>
|
||||
<p>
|
||||
The next VIzon draw is on {nextUpcomingDate.format('dddd')}, {nextUpcomingDate.format('L LT')}.
|
||||
</p>
|
||||
<Countdown date={nextUpcomingDate} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue