Skip to content

Commit 040eea1

Browse files
authored
Merge pull request #4 from aaronschendel/typo-fix
Typo fixs
2 parents 3dd8f88 + 291fff9 commit 040eea1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lessons/03-rscs-without-a-framework/D-the-rsc-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ return reply.send(`3:I["./src/ClientComponent.jsx",["vendors-node_modules_react_
136136
`);
137137
```
138138

139-
- This may not work for you due to paths (and again, you'd never hand author this so don't work if it doesn't.)
139+
- This may not work for you due to paths (and again, you'd never hand author this so don't worry if it doesn't.)
140140
- This is cool though because you can see how React is referencing a client component. It's basically saying here's a div, and in it has an h1 and a "$L3". It then defines a "3" on the first line where it has `3:I`. Here it's saying anywhere that you have a 3 component, it refers to a ClientComponent, and that's going to be in this specific bundle, go find that and use it.
141141
- Pretty cool, right?
142142
- I genuinely don't know what some of the pieces here do, but it's fun to hack around and see what you can bend React to do.

lessons/04-rscs-with-nextjs/D-server-and-client-components-together.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default async function TeacherView() {
3434
}
3535
```
3636

37-
This a server component that will load initial notes from a fetchNotes function and then feed it in as a prop. Let's go write that fetchNote.js file.
37+
This a server component that will load initial notes from a fetchNotes function and then feed it in as a prop. Let's go write that fetchNotes.js file.
3838

3939
```javascript
4040
"use server";

0 commit comments

Comments
 (0)