From 27fbc1ad662ec04948f7500de2a80024c63cf7ca Mon Sep 17 00:00:00 2001 From: William Blythe Date: Thu, 25 Oct 2018 10:36:35 +1100 Subject: [PATCH] remove file --- src/app/components/Ad.jsx | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/app/components/Ad.jsx diff --git a/src/app/components/Ad.jsx b/src/app/components/Ad.jsx deleted file mode 100644 index f81d3566..00000000 --- a/src/app/components/Ad.jsx +++ /dev/null @@ -1,34 +0,0 @@ -import React, { Component, PropTypes } from 'react'; - -export default class Ad extends Component { - static propTypes = { - client: PropTypes.string, - slot: PropTypes.string, - format: PropTypes.string, - wrapperDivStyle: PropTypes.object - }; - constructor(props) { - super(props); - } - // This code is ran when the component mounts - componentDidMount() { - - } - - // an outer div for styling purposes - // changed class to ClassName - // changed style from string to an object - - render() { - return ( -
- -
- ); - } -}