error 모음집

sujeong kim·2021년 7월 19일
0

explicit-module-boundary-types

명백하게 리턴값을 정의하라는 뜻입니다.
리액트의 경우 ReactElement를 반환한다고 컴포넌트 함수에 명시하였습니다.

// libraries
import type { AppProps } from 'next/app';
import { ReactElement } from 'react';

function MyApp({ Component, pageProps }: AppProps): ReactElement {
  return <Component {...pageProps} />;
}
export default MyApp;
profile
개발자

0개의 댓글