summaryrefslogtreecommitdiffstats
path: root/frontend/pages/order.js
blob: 82ddea91ca3f2c4cc1b0ec7adb80cae98b28f987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Component } from 'react';
import withData from '../lib/withData';
import Page from '../components/Page';
import Order from '../components/Order';

const OrderPage = props => (
  <Page>
    <Order id={props.url.query.id} />
  </Page>
);

export default withData(OrderPage);