hoangquochung1110 / public-notes

0 stars 0 forks source link

NextJS 101 #33

Open hoangquochung1110 opened 2 months ago

hoangquochung1110 commented 2 months ago

NextJS (and React) is inspired by the following concepts:

hoangquochung1110 commented 2 months ago

Components

Components are actually functions that return JSX elements

Components basically have these attributes:

What is the difference between props and state?

Props are read-only information that's passed to components. State is information that can change over time, usually triggered by user interaction.

hoangquochung1110 commented 2 months ago

Principles