NEXT JS: Rendering

PART III

ยท

1 min read

NEXT JS: Rendering
  • Rendering converts the code you write into user interfaces. React and Next.js allow you to create hybrid web applications where parts of your code can be rendered on the server or the client

  • By default server side rendering (it is best practice)

  • To implement client side rendering add use-client directive

  • Every server component gets refreshed if there is changes in data

Different Types of Rendering

Benefits of different rendering

BEST PRACTICE

REFERENCE

ย