stacker.news/pages/recent.js
2021-06-22 12:47:49 -05:00

11 lines
214 B
JavaScript

import Layout from '../components/layout'
import Items from '../components/items'
export default function Index () {
return (
<Layout>
<Items variables={{ sort: 'recent' }} rank />
</Layout>
)
}