diff --git a/src/components/MapPanel/MapPanel.css b/src/components/MapPanel/MapPanel.css
deleted file mode 100644
index f4ea212f..00000000
--- a/src/components/MapPanel/MapPanel.css
+++ /dev/null
@@ -1,53 +0,0 @@
-.mapContainer {
- height: calc(100vh - 237px);
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #ddd;
- color: #fff;
- font-size: 2rem;
-}
-.mapListingsContainer {
- height: 237px;
- width: auto;
- overflow-x: scroll;
- background-color: #fff;
- display: flex;
- flex-direction: row;
- padding: 1rem;
-}
-
-.toFiltersButton {
- position: fixed;
- top: calc(70vh - 80px);
- left: 50%;
- width: 200px;
- margin-left: -100px;
- display: block;
- text-align: center;
- text-decoration: none;
- font-size: 1.4rem;
- padding: 0.5rem;
- color: #fff;
- background-color: #9b9b9b;
- cursor: pointer;
-
- &:hover {
- background-color: #888;
- }
-}
-
-.close {
- position: absolute;
- top: 0;
- left: 0;
- height: 3em;
- padding: 1em;
- color: #999;
- text-decoration: none;
-
- &:hover {
- color: #000;
- }
-}
diff --git a/src/components/MapPanel/MapPanel.js b/src/components/MapPanel/MapPanel.js
deleted file mode 100644
index d0e00b64..00000000
--- a/src/components/MapPanel/MapPanel.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import { NamedLink } from '../../components';
-import css from './MapPanel.css';
-
-const MapPanel = props => (
-
-
Map
-
{props.children}
-
- Filters
-
-
- X
-
-
-);
-
-MapPanel.defaultProps = { children: null };
-
-const { any } = PropTypes;
-
-MapPanel.propTypes = { children: any };
-
-export default MapPanel;
diff --git a/src/components/MapPanel/MapPanel.test.js b/src/components/MapPanel/MapPanel.test.js
deleted file mode 100644
index 95787f3e..00000000
--- a/src/components/MapPanel/MapPanel.test.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import React from 'react';
-import { renderShallow } from '../../util/test-helpers';
-import MapPanel from './MapPanel';
-
-describe('MapPanel', () => {
- it('matches snapshot', () => {
- const tree = renderShallow();
- expect(tree).toMatchSnapshot();
- });
-});
diff --git a/src/components/MapPanel/__snapshots__/MapPanel.test.js.snap b/src/components/MapPanel/__snapshots__/MapPanel.test.js.snap
deleted file mode 100644
index 8a0209aa..00000000
--- a/src/components/MapPanel/__snapshots__/MapPanel.test.js.snap
+++ /dev/null
@@ -1,20 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`MapPanel matches snapshot 1`] = `
-
-
- Map
-
-
-
- Filters
-
-
- X
-
-
-`;
diff --git a/src/components/index.js b/src/components/index.js
index 65b5cbd2..89c29d25 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -66,7 +66,6 @@ export { default as LocationAutocompleteInput, LocationAutocompleteInputField }
export { default as Logo } from './Logo/Logo';
export { default as ManageListingCard } from './ManageListingCard/ManageListingCard';
export { default as Map } from './Map/Map';
-export { default as MapPanel } from './MapPanel/MapPanel';
export { default as Menu } from './Menu/Menu';
export { default as MenuContent } from './MenuContent/MenuContent';
export { default as MenuItem } from './MenuItem/MenuItem';