Remove unused import vars, resort imports and fix code style.

master
Icedream 2017-08-19 23:42:09 +02:00
parent 3a5087bdc8
commit 1ad8fd24bf
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 6 additions and 8 deletions

View File

@ -1,20 +1,18 @@
import React from 'react';
import PropTypes from 'prop-types';
import moment from 'moment-timezone';
import 'react-fontawesome';
import WebFont from 'webfontloader';
import Countdown from './Countdown';
import Header from './Header';
import getUpcomingDate from './getUpcomingDate';
import FontAwesome from 'react-fontawesome';
import WebFont from 'webfontloader';
import style from './App.sass';
WebFont.load({
google: {
families: ['Titillium Web:300,400,700', 'sans-serif']
}
families: ['Titillium Web:300,400,700', 'sans-serif'],
},
});
class App extends React.Component {
@ -74,8 +72,8 @@ class App extends React.Component {
The next VIzon draw is on {nextUpcomingDate.format('dddd')}, {nextUpcomingDate.format('L LT z')}.
</p>
<Countdown date={nextUpcomingDate} />
</div>
<div className={style.footer}>
</div>
<div className={style.footer}>
Made by Icedream & MAGIC
</div>
</div>