summaryrefslogtreecommitdiffstats
path: root/frontend/pages/index.js
blob: d31610814025c2ce0d9cf99081a21c5c0dc2be1a (plain)
1
2
3
4
5
6
7
import Items from '../components/Items';

const Home = props => (
  <Items page={parseInt(props.query.page) || 1} />
)

export default Home;