mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 11:19:14 +08:00
25 lines
328 B
TypeScript
25 lines
328 B
TypeScript
|
import type { Section } from "./types"
|
||
|
|
||
|
export const sections = [
|
||
|
{
|
||
|
name: "关注",
|
||
|
id: "focus",
|
||
|
},
|
||
|
{
|
||
|
name: "综合",
|
||
|
id: "main",
|
||
|
},
|
||
|
{
|
||
|
name: "国内",
|
||
|
id: "china",
|
||
|
},
|
||
|
{
|
||
|
name: "国外",
|
||
|
id: "world",
|
||
|
},
|
||
|
{
|
||
|
name: "数码",
|
||
|
id: "digital",
|
||
|
},
|
||
|
] as const satisfies Section[]
|