12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
export interface Tab {
|
|
id: string;
|
|
label: string;
|
|
icon: string;
|
|
}
|
|
|
|
export const tabs: Tab[] = [
|
|
{ id: "projects", label: "项目展示", icon: "🎨" },
|
|
{ id: "tools", label: "在线工具", icon: "🛠" },
|
|
{ id: "bookmarks", label: "网址导航", icon: "🔖" },
|
|
];
|