mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
34 lines
520 B
TypeScript
34 lines
520 B
TypeScript
export const books = [
|
|
{
|
|
text: "计算机基础",
|
|
link: "cs-basics",
|
|
icon: "computer",
|
|
},
|
|
{
|
|
text: "数据库",
|
|
link: "database",
|
|
icon: "database",
|
|
},
|
|
{
|
|
text: "搜索引擎",
|
|
link: "search-engine",
|
|
icon: "search",
|
|
},
|
|
{
|
|
text: "Java",
|
|
link: "java",
|
|
icon: "java",
|
|
},
|
|
{
|
|
text: "软件质量",
|
|
link: "software-quality",
|
|
icon: "highavailable",
|
|
},
|
|
|
|
{
|
|
text: "分布式",
|
|
link: "distributed-system",
|
|
icon: "distributed-network",
|
|
},
|
|
];
|