mirror of
https://github.com/d0zingcat/BroadcastChannel.git
synced 2026-05-13 15:09:12 +00:00
13 lines
248 B
Plaintext
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} />
|