From cd0b07b3adb36fb5ec098f9e511ab45d774fee7b Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Tue, 30 Jan 2018 12:41:01 -0500 Subject: Move to Prisma Backend --- frontend/pages/buy.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 frontend/pages/buy.js (limited to 'frontend/pages/buy.js') diff --git a/frontend/pages/buy.js b/frontend/pages/buy.js new file mode 100644 index 0000000..d6b1331 --- /dev/null +++ b/frontend/pages/buy.js @@ -0,0 +1,16 @@ +import { Component } from 'react'; +import withData from '../lib/withData'; +import TakeMyMoney from '../components/TakeMyMoney'; + +class Buy extends Component { + render() { + return ( +
+

Buy

+ +
+ ) + } +} + +export default withData(Buy); -- cgit v1.3