summaryrefslogtreecommitdiffstats
path: root/frontend/pages/buy.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
committerWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
commit97b6de6aa437f7a913a33b9e6aa18a919faf2caf (patch)
tree431e12a535baf1d2ad59601ee7c5e8084ae7a263 /frontend/pages/buy.js
parentd22616d5a675f5a381c741784333151255713b45 (diff)
a whole bunch of things that should be in their own commits
Diffstat (limited to 'frontend/pages/buy.js')
-rw-r--r--frontend/pages/buy.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/frontend/pages/buy.js b/frontend/pages/buy.js
deleted file mode 100644
index d6b1331..0000000
--- a/frontend/pages/buy.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Component } from 'react';
-import withData from '../lib/withData';
-import TakeMyMoney from '../components/TakeMyMoney';
-
-class Buy extends Component {
- render() {
- return (
- <div>
- <p>Buy</p>
- <TakeMyMoney />
- </div>
- )
- }
-}
-
-export default withData(Buy);