Added the banner image

This commit is contained in:
2019-05-25 21:39:42 +10:00
parent 1ad4a14b35
commit eef8b3721f
8 changed files with 16 additions and 12 deletions
-8
View File
@@ -1,7 +1,6 @@
import React from 'react';
import { connect } from 'react-redux';
import { withRouter, Link } from 'react-router-dom';
import PropTypes from 'prop-types';
//panels
import CommonLinks from '../panels/common_links.jsx';
@@ -37,8 +36,6 @@ class Home extends React.Component {
//return the home page
return (
<div className='page'>
<h1 style={{textAlign: 'center', fontSize: '50px', margin: '30px'}}>KINGDOM BATTLES!</h1>
<div className='sidePanelPage'>
<SidePanel />
@@ -117,11 +114,6 @@ class Home extends React.Component {
}
}
Home.propTypes = {
id: PropTypes.number.isRequired,
token: PropTypes.number.isRequired
};
function mapStoreToProps(store) {
return {
id: store.account.id,