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: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -426,7 +426,8 @@
426
426
427
427
```jsx harmony
428
428
function Greeting({ message }) {
429
-
return <h1>{`Hello, ${message}`}</h1>
429
+
return <h1>{`Hello, ${message}`}</h1>
430
+
430
431
}
431
432
```
432
433
@@ -5203,10 +5204,11 @@
5203
5204
Below are the list of some of the features provided by create react app.
5204
5205
1. React, JSX, ES6, Typescript and Flow syntax support.
5205
5206
2. Autoprefixed CSS
5206
-
3. A live development server
5207
-
4. A fast interactive unit test runner with built-in support for coverage reporting
5208
-
5. A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps
5209
-
6. An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria.
5207
+
3. CSS Reset/Normalize
5208
+
4. A live development server
5209
+
5. A fast interactive unit test runner with built-in support for coverage reporting
5210
+
6. A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps
5211
+
7. An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria.
5210
5212
5211
5213
315. ### What is the purpose of renderToNodeStream method?
5212
5214
The `ReactDOMServer#renderToNodeStream` method is used to generate HTML on the server and send the markup down on the initial request for faster page loads. It also helps search engines to crawl your pages easily for SEO purposes.
0 commit comments