Files
BroadcastChannel/src/pages/before/[cursor].astro
2024-08-04 20:42:51 +08:00

13 lines
248 B
Plaintext

---
import List from '../../components/list.astro'
import { getChannelInfo } from '../../lib/telegram'
const channel = await getChannelInfo(Astro, {
before: Astro.params.cursor,
})
export const prerender = false
---
<List channel={channel} />