“Tombol Bereaksi” Kode Jawaban

Tombol Bereaksi

import { Route } from 'react-router-dom'

const Button = () => (
  <Route render={({ history}) => (
    <button
      type='button'
      onClick={() => { history.push('/new-location') }}
    >
      Click Me!
    </button>
  )} />
)
Clean Chamois

Acara Penanganan di JSX

//Event hadling in react
function ActionLink() {
  function handleClick(e) {
    e.preventDefault();
    console.log('The link was clicked.');
  }

  return (
    <a href="#" onClick={handleClick}>
      Click me
    </a>
  );
}
Repulsive Rook

Jawaban yang mirip dengan “Tombol Bereaksi”

Pertanyaan yang mirip dengan “Tombol Bereaksi”

Lebih banyak jawaban terkait untuk “Tombol Bereaksi” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya