Skip to content

Commit 7955693

Browse files
authored
Merge pull request sudheerj#35 from NaveenDA/patch-1
Add CSS Reset
2 parents a225d15 + ba760c7 commit 7955693

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,8 @@
426426

427427
```jsx harmony
428428
function Greeting({ message }) {
429-
return <h1>{`Hello, ${message}`}</h1>

429+
return <h1>{`Hello, ${message}`}</h1>
430+
430431
}
431432
```
432433

@@ -5203,10 +5204,11 @@
52035204
Below are the list of some of the features provided by create react app.
52045205
1. React, JSX, ES6, Typescript and Flow syntax support.
52055206
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.
52105212
52115213
315. ### What is the purpose of renderToNodeStream method?
52125214
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

Comments
 (0)