blob: bbe89d63fe90bf82320613f8a8dcdd96db6a2bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import Page from '../components/Page';
import withData from '../lib/withData';
import CreateItem from '../components/CreateItem';
import PleaseSignIn from '../components/PleaseSignIn';
const Home = props => {
const page = parseInt(props.url.query.page) || 1;
return (
<Page>
<PleaseSignIn>
<CreateItem />
</PleaseSignIn>
</Page>
);
};
export default withData(Home);
|