From 6f5b22fd21c025f3bced0fa84dc48c889e42d75b Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Thu, 19 Sep 2019 18:39:42 +0200 Subject: [PATCH] fix: re-remove Side-Panel --- .../Challenges/project/Side-Panel.js | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 client/src/templates/Challenges/project/Side-Panel.js diff --git a/client/src/templates/Challenges/project/Side-Panel.js b/client/src/templates/Challenges/project/Side-Panel.js deleted file mode 100644 index f5648d8a0d..0000000000 --- a/client/src/templates/Challenges/project/Side-Panel.js +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import ChallengeTitle from '../components/Challenge-Title'; -import Spacer from '../../../components/helpers/Spacer'; - -const propTypes = { - description: PropTypes.string, - introPath: PropTypes.string, - isCompleted: PropTypes.bool, - isSignedIn: PropTypes.bool, - title: PropTypes.string -}; - -export default function SidePanel({ title, description, isCompleted }) { - return ( -
- - {title} -
-
- ); -} - -SidePanel.displayName = 'ProjectSidePanel'; -SidePanel.propTypes = propTypes;