summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/FINISHED/frontend/pages/update.js
blob: ba9d52522f88222da1f2813ede94bbe35d72bf1d (plain)
1
2
3
4
5
6
7
8
9
import UpdateItem from '../components/UpdateItem';

const Sell = ({ query }) => (
  <div>
    <UpdateItem id={query.id} />
  </div>
);

export default Sell;