From adc85ec6896b246d049083a41c02e68cde401baf Mon Sep 17 00:00:00 2001 From: Nishant Arora Date: Mon, 2 Jan 2017 18:40:30 +0530 Subject: [PATCH] Removed about and product page --- client/app/index.jsx | 4 ---- client/app/static/about.jsx | 9 --------- client/app/static/product.jsx | 9 --------- 3 files changed, 22 deletions(-) delete mode 100644 client/app/static/about.jsx delete mode 100644 client/app/static/product.jsx diff --git a/client/app/index.jsx b/client/app/index.jsx index 487e582..d5988ac 100644 --- a/client/app/index.jsx +++ b/client/app/index.jsx @@ -5,8 +5,6 @@ import { Router, Route, IndexRoute, IndexRedirect, hashHistory } from 'react-rou import App from './static/app.jsx'; import Home from './static/home.jsx'; import Login from './static/login.jsx'; -import About from './static/about.jsx'; -import Product from './static/product.jsx'; import Article from './static/article.jsx'; import NewArticle from './static/new.jsx'; import EditArticle from './static/edit.jsx'; @@ -20,8 +18,6 @@ render( - - diff --git a/client/app/static/about.jsx b/client/app/static/about.jsx deleted file mode 100644 index 8e3a455..0000000 --- a/client/app/static/about.jsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; - -const About = React.createClass({ - render () { - return

This is the about page.

; - } -}); - -export default About; diff --git a/client/app/static/product.jsx b/client/app/static/product.jsx deleted file mode 100644 index 445c72a..0000000 --- a/client/app/static/product.jsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; - -const Product = React.createClass({ - render () { - return

This is the product page

; - } -}); - -export default Product;