Practical 15

PHOTO EMBED

Sat Mar 07 2026 11:51:38 GMT+0000 (Coordinated Universal Time)

Saved by @Manasi123 #html

import React from "react";

function Child({ onClick }) {

  return <button onClick={() => onClick("Manasi")}>Say Hello</button>;

}

function App() {

  const handleClick = (name) => alert(`Hello, ${name}!`);

  return (

    <div>

      <h2>Function Argument Example</h2>

      <Child onClick={handleClick} />

    </div>

  );

}

export default App;
content_copyCOPY