summaryrefslogtreecommitdiffstats
path: root/frontend/pages/item.js
blob: 7f25dd8bd5e36ffa14bdb4217bdc01015776185d (plain)
1
2
3
4
5
6
7
8
9
10
11
import withData from '../lib/withData';
import Page from '../components/Page';
import SingleItem from '../components/SingleItem';

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

export default withData(ItemPage);