This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (149 loc) · 4.29 KB
/
index.html
File metadata and controls
154 lines (149 loc) · 4.29 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Essential React</title>
<link rel="icon" href="img/zuehlke_logo.jpg" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/Zuehlke/zuehlke-reveal-package@f42658c99dec0812d754d935263a70b93b81f54b/release/index.css"
/>
</head>
<body>
<div class="toc">
<header>
<h1>Essential React</h1>
<h2>
<span class="nowrap">Patrik Huggenberger</span>,
<span class="nowrap">Christoph Salvisberg</span>,
<span class="nowrap">Alexander Hofmann</span>,
<span class="nowrap">Jonas Brunner</span>
</h2>
</header>
<section>
<a href="slides/01_Intro.html" target="_blank">
<h2 class="counter">Intro</h2>
<ul>
<li>About this course</li>
<li>A quick overview</li>
</ul>
</a>
</section>
<section>
<a href="slides/02_Setup.html" target="_blank">
<h2 class="counter">Setup</h2>
<ul>
<li>How React can be used</li>
<li>Create a new app</li>
<li>JSX & Typescript</li>
<li>Tools</li>
</ul>
</a>
</section>
<section>
<a href="slides/05_First_Components.html" target="_blank">
<h2 class="counter">First Components</h2>
<ul>
<li>Rendering elements</li>
<li>Props</li>
<li>Rendering lists</li>
<li>Nesting components</li>
</ul>
</a>
</section>
<section>
<a href="slides/06_Hooks.html" target="_blank">
<h2 class="counter">Hooks</h2>
<ul>
<li>useState</li>
<li>Handling input</li>
<li>Hooks</li>
<li>SyntheticEvent</li>
</ul>
</a>
</section>
<section>
<a href="slides/07_Routing.html" target="_blank">
<h2 class="counter">Routing</h2>
<ul>
<li>Defining routes</li>
<li>Linking to routes</li>
<li>Useful React Router features</li>
</ul>
</a>
</section>
<section>
<a href="slides/08_Data_Fetching.html" target="_blank">
<h2 class="counter">Data Fetching</h2>
<ul>
<li>Data Fetching with third-party library</li>
<li>Loading & error states</li>
<li>Using mutations</li>
</ul>
</a>
</section>
<section>
<a href="slides/09_Forms.html" target="_blank">
<h2 class="counter">Forms</h2>
<ul>
<li>Different Form Tags</li>
<li>Controlled vs. Uncontrolled</li>
<li>Form Libraries</li>
</ul>
</a>
</section>
<section>
<a href="slides/10_Side_Effects.html" target="_blank">
<h2 class="counter">Side Effects</h2>
<ul>
<li>useEffect</li>
<li>Cleanup</li>
<li>Custom Hooks</li>
</ul>
</a>
</section>
<section>
<a href="slides/11_State_Management.html" target="_blank">
<h2 class="counter">State Management</h2>
<ul>
<li>useContext</li>
<li>useReducer</li>
<li>State management libraries</li>
</ul>
</a>
</section>
<section>
<a href="slides/12_SSR.html" target="_blank">
<h2 class="counter">SSR</h2>
<ul>
<li>Routing</li>
<li>Data Fetching / Loaders</li>
<li>Forms / Actions</li>
</ul>
</a>
</section>
<section>
<a href="slides/13_Styling.html" target="_blank">
<h2 class="counter">Styling</h2>
<ul>
<li>CSS Modules</li>
<li>SASS</li>
<li>Other styling solutions</li>
</ul>
</a>
</section>
<section>
<a href="slides/14_Various.html" target="_blank">
<h2 class="counter">Various</h2>
<ul>
<li>Many further topics for optional deep-dives</li>
</ul>
</a>
</section>
</div>
</body>
</html>