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

What is slice() in JavaScript

What is slice() ? slice() is a method used to copy a portion of an array or string without changing the original . Think of it like cut...