“Usestate Hook untuk cek kotak centang dan hapus centang” Kode Jawaban

Usestate Hook untuk cek kotak centang dan hapus centang

const { useState } = React; // --> for inline use
// import React, { useState } from 'react';  // --> for real project


const App = () => {
  const [checked, setChecked] = useState(false)
  const handleClick = () => setChecked(!checked)
  
  return <input onClick={handleClick} checked={checked} type="checkbox" />
};


ReactDOM.render(<App />, document.getElementById('root'))
Fantastic Fish

Usestate Hook untuk cek kotak centang dan hapus centang

//one checkbox will be clicked another will be disabled.....

const { useState } = React; 
import React, { useState } from 'react';  


const App = () => {
  const [disabled, setDisabled] = useState(false)
  const handleClick = () => setDisabled(!true)
  
  return {
    <div onClick={handleClick}> <Checkbox /></div>
     <div> <Checkbox  disabled={disabled} /></div>
}
};


ReactDOM.render(<App />, document.getElementById('root'))
Sree Chakram

Jawaban yang mirip dengan “Usestate Hook untuk cek kotak centang dan hapus centang”

Pertanyaan yang mirip dengan “Usestate Hook untuk cek kotak centang dan hapus centang”

Lebih banyak jawaban terkait untuk “Usestate Hook untuk cek kotak centang dan hapus centang” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya