summaryrefslogtreecommitdiffstats
path: root/pages/buy.js
blob: d6b13310df303b9f6c995c2059c717405049a322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);