newsnow/shared/data.ts

25 lines
328 B
TypeScript
Raw Normal View History

2024-09-26 19:16:42 +08:00
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[]