posted: 2018/04/09
Type 'Element' is not assignable to type 'StatelessComponent<Props>'. が出た時のメモ
TypeScriptで久々にSFCをいじくってたらハマったのでメモ
Type 'Element' is not assignable to type 'StatelessComponent<Props>'.
下記のように返り値にSFCを指定していたためエラーになっていた
const Foo = (props: Props) : SFC<Props> => {
正しくはこう
const Foo: SFC<Props> = (props: Props) => {