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
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -270,6 +270,7 @@
270
270
|254|[What are the limitations with HOCs?](#what-are-the-limitations-with-hocs)|
271
271
|255|[How to debug forwardRefs in DevTools?](#how-to-debug-forwardrefs-in-devtools)|
272
272
|256|[When component props defaults to true?](#when-component-props-defaults-to-true)|
273
+
|257|[What is NextJS and major features of it?](#what-is-nextjs-and-major-features-of-it)|
273
274
274
275
## Core React
275
276
@@ -4308,3 +4309,11 @@
4308
4309
<MyInput autocomplete={true} />
4309
4310
```
4310
4311
**Note:** It is not recommend using this approach because it can be confused with the ES6 object shorthand (example, {name} which is short for {name: name})
4312
+
257. ### What is NextJS and major features of it?
4313
+
Next.js is a popular and lightweight framework for static and server‑rendered applications built with React. It also provides styling and routing solutions. Below are the major features provided by NextJS,
4314
+
1. Server-rendered by default
4315
+
2. Automatic code splitting for faster page loads
4316
+
3. Simple client-side routing (page based)
4317
+
4. Webpack-based dev environment which supports (HMR)
4318
+
5. Able to implement with Express or any other Node.js HTTP server
4319
+
6. Customizable with your own Babel and Webpack configurations
0 commit comments