stacker.news/pages/~/[sub]/rss.js

10 lines
227 B
JavaScript
Raw Normal View History

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