summaryrefslogtreecommitdiffstats
path: root/frontend/pages/update.js
blob: 7a8630d875b3ac8f4cf4f66045654aab3a3bd3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component } from 'react';
import UpdateItem from '../components/UpdateItem';
import PleaseSignIn from '../components/PleaseSignIn';

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

export default Home;