summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/18/frontend/pages/sell.js
blob: 0e75da49db8d66369fca4a4e2d5a4d51722dc00b (plain)
1
2
3
4
5
6
7
8
9
import CreateItem from '../components/CreateItem';

const Sell = props => (
  <div>
    <CreateItem />
  </div>
);

export default Sell;