blob: 57a327d71a6efeaba0fb7f2c771cddfaf0d376e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import CreateItem from '../components/CreateItem';
import PleaseSignIn from '../components/PleaseSignIn';
const Sell = () => (
<PleaseSignIn>
<CreateItem />
</PleaseSignIn>
);
export default Sell;
|