Remove Aside

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12
2018-06-28 21:42:34 -04:00
parent dc7c890460
commit e68220f4e4
2 changed files with 0 additions and 19 deletions

View File

@@ -1,17 +0,0 @@
/* Pi-hole: A black hole for Internet advertisements
* (c) 2017 Pi-hole, LLC (https://pi-hole.net)
* Network-wide ad blocking via your own hardware.
*
* Web Interface
* Aside component
*
* This file is copyright under the latest version of the EUPL.
* Please see LICENSE file for your rights under this license. */
import React from 'react';
export default () => (
<aside className="aside-menu">
Aside Menu
</aside>
);

View File

@@ -12,7 +12,6 @@ import React from 'react';
import { Switch, Route, Redirect } from 'react-router-dom'
import Header, { mobileSidebarHide } from '../components/Header';
import Sidebar from '../components/Sidebar';
import Aside from '../components/Aside';
import Footer from '../components/Footer';
import Dashboard from '../views/Dashboard';
import QueryLog from '../components/QueryLog';
@@ -42,7 +41,6 @@ export default props => (
</Switch>
</div>
</main>
<Aside/>
</div>
<Footer/>
</div>