summaryrefslogtreecommitdiffstats
path: root/frontend/pages/admin/update.js
blob: 2731f055f65b1488ec2a6d51570bd527d9b8cd15 (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 UpdateItem from '../../components/UpdateItem';
import Page from '../../components/Page';

class Home extends Component {
  render() {
    return (
      <Page>
        <UpdateItem id={this.props.url.query.id} />
      </Page>
    );
  }
}

export default withData(Home);