Events in Next Js

  • When you use events in next js then always convert that component as client component through "use client". event like: onclick, onchange etc.
  • Example:


    "use client"
    import React from 'react'

    const Home = () => {
      return (
        <div>
          Home Page
          <button
            onClick={() => {
              alert("hello")
            }}
          >
            Click me
          </button>
        </div>
      )
    }

    export default Home




No comments:

Post a Comment

Phase 3 — Components Deep Dive

Chapter 1 — What We Are Going to Learn and Why In Phase 2 you learned what a component is and how to create one. You know that a component h...