ryu110
@ryu110

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

reactで関数を変数に渡したい

alertがでてこない。。。。onclickのところで変数に渡して関数を起動させたいと思っています。
書き方間違えていますでしょうか?

import Button from 'Button/Button'
// import react from 'react'

const addOnClick = () => {
  alert('ddd')
}
const TodoList = () => {

  return (
    <div>
      <Button onClick={addOnClick}>Todo追加!!</Button>
    </div>
  )
}

export default TodoList

0

2Answer

Comments

  1. @ryu110

    Questioner

    自作です。
    下記のように作成しています。
import { FC } from 'react'

type ButtonProps = {
  children: React.ReactNode
  onClick?: () => void
}

const Button: FC<ButtonProps> = ({ children }) => {
  return (
    <div>
      <button>{children}</button>
    </div>
  )
}

export default Button

0Like

Comments

  1. @ryu110

    Questioner

    あ、わかりました。わたしてないですね
  2. @ryu110

    Questioner

    <button onClick={onClick}>ですね

Your answer might help someone💌