stacker.news/pages/rss.js

10 lines
215 B
JavaScript
Raw Normal View History

2021-07-23 15:45:09 +00:00
2023-05-04 18:17:02 +00:00
import getGetRssServerSideProps from '../lib/rss'
2022-02-17 17:23:43 +00:00
import { ITEMS } from '../fragments/items'
2021-07-23 15:45:09 +00:00
export default function RssFeed () {
return null
}
2023-05-04 20:05:07 +00:00
export const getServerSideProps = getGetRssServerSideProps(ITEMS)