1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

パラメーター 'props' の型は暗黙的に 'any' になりますの解決法

下の問題のファイルでエラーが発生する原因になっている箇所

ColfulMessage.tsx
export const ColorfulMessage = (props) => {
}

エラーの原因

  • 引数として渡されているpropsの型定義がされていないから

解決法

propsの型定義を書く

ColfulMessage.tsx
type Props = {
    color: string;
    message: string;
  }
export const ColorfulMessage = (props:Props) => {
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?