JSX is deprecated
2023. 11. 17. 15:41
@typescript-eslint/explicit-function-return-type 규칙이 적용되어 있었고, return type이 필수로 명시돼야 했다. 게다가 초기에 제공된 환경에서도 JSX.Element로 return type을 명시해줬는데, namspace JSX가 deprecated 됐다.@deprecated — Use React.JSX instead of the global JSX namespace. 이번 기회에 오랜만에 cheatsheet을 보고오자.Useful React Prop Type Examplesexport declare interface AppProps { children?: React.ReactNode; // best, accepts everything React can re..