Hello Next.js
Basic useState example as starting point to delve into the world of this framework. The inital value (20) was passed from the server but the component itself (Counter application) was created from the client side.
Note:
- Since NextJS 13, all components are Server Components.
- You must specify 'use client' in order to work with React hooks.