10 lines
215 B
JavaScript
Raw Normal View History

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