You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/community/courses.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ permalink: community/courses.html
8
8
9
9
## Free Courses {#free-courses}
10
10
11
-
-[Glitch: React Starter Kit](https://glitch.com/glimmer/post/react-starter-kit/) - A free, 5-part video course with interactive code examples that will help you learn React.
11
+
-[Glitch: React Starter Kit](https://glitch.com/glimmer/post/react-starter-kit) - A free, 5-part video course with interactive code examples that will help you learn React.
12
12
13
13
-[Codecademy: React 101](https://www.codecademy.com/learn/react-101) - Codecademy's introductory course for React.
Copy file name to clipboardExpand all lines: content/community/examples.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ There are many example projects created by the React community. We're keeping th
10
10
11
11
If you add a project, please commit to keeping it up to date with the latest versions of React.
12
12
13
-
## Small Examples
13
+
## Small Examples {#small-examples}
14
14
15
15
***[Calculator](https://github.com/ahfarmer/calculator)** Implementation of the iOS calculator built in React
16
16
***[Emoji Search](https://github.com/ahfarmer/emoji-search)** React app for searching emoji
@@ -20,7 +20,6 @@ If you add a project, please commit to keeping it up to date with the latest ver
20
20
***[Counter App](https://github.com/arnab-datta/counter-app)** A small shopping cart example
21
21
***[Tutorial Solutions](https://github.com/harman052/react-tutorial-solutions)** Solutions to challenges mentioned at the end of React tutorial
22
22
23
-
## Complete Apps
23
+
## Complete Apps {#complete-apps}
24
24
25
-
***[Hacker News Clone React/GraphQL](https://github.com/clintonwoo/hackernews-react-graphql)** Hacker News clone rewritten with universal JavaScript, using React and GraphQL
26
25
***[Builder Book](https://github.com/builderbook/builderbook)** Open-source web app to write and host documentation or sell books. Built with React, Material-UI, Next, Express, Mongoose, MongoDB
Copy file name to clipboardExpand all lines: content/community/team.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,8 @@ Sebastian majored in psychology. He's usually quiet. Even when he says something
74
74
75
75

76
76
77
+
[@sethwebster on GitHub](https://github.com/sethwebster)·[@sethwebster on Twitter](https://twitter.com/sethwebster)
78
+
77
79
Seth started programming as a kid growing up in Tucson, AZ. After school, he was bitten by the music bug and was a touring musician for about 10 years before returning to *work*, starting with Intuit. In his spare time, he loves [taking pictures](https://www.sethwebster.com) and flying for animal rescues in the northeastern United States.
Copy file name to clipboardExpand all lines: content/docs/code-splitting.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
id: code-splitting
3
3
title: Code-Splitting
4
4
permalink: docs/code-splitting.html
5
+
prev: accessibility.html
5
6
---
6
7
7
8
## Bundling {#bundling}
@@ -45,7 +46,7 @@ console.log(add(16, 26)); // 42
45
46
>
46
47
> Your bundles will end up looking a lot different than this.
47
48
48
-
If you're using [Create React App](https://github.com/facebookincubator/create-react-app), [Next.js](https://github.com/zeit/next.js/), [Gatsby](https://www.gatsbyjs.org/), or a similar tool, you will have a Webpack setup out of the box to bundle your
49
+
If you're using [Create React App](https://create-react-app.dev/), [Next.js](https://nextjs.org/), [Gatsby](https://www.gatsbyjs.org/), or a similar tool, you will have a Webpack setup out of the box to bundle your
49
50
app.
50
51
51
52
If you aren't, you'll need to setup bundling yourself. For example, see the
0 commit comments