-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
62 lines (62 loc) · 1.21 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = {
docs: [
{
type: "category",
label: "Getting started",
items: ["doc1"],
},
{
type: "category",
label: "HTML/CSS",
items: ["html/brief"],
},
{
type: "category",
label: "Javascript",
items: [
"javascript/cheatsheet",
"javascript/dom",
"javascript/polyfills",
],
},
{
type: "category",
label: "Coding Questions",
items: [
"coding-questions/easy-set-1",
"coding-questions/easy-set-2",
"coding-questions/medium-set-1",
],
},
{
type: "category",
label: "Linux",
items: ["linux/frequently-used"],
},
{
type: "category",
label: "React JS",
items: ["reactjs/cheatsheet"],
},
{
type: "category",
label: "System Design",
items: ["system-design/token-based-auth"],
},
{
type: "category",
label: "Typescript",
items: ["typescript/cheatsheet"],
},
{
type: "category",
label: "VSCode",
items: ["vscode/frequently-used"],
},
{
type: "category",
label: "Web Peformance",
items: ["web-performance/basic"],
},
],
};