skip React.FC for App

This commit is contained in:
Amruth Pillai
2022-09-15 20:40:19 +02:00
parent 045145ed67
commit 4b2d9d7026

View File

@ -18,7 +18,7 @@ import queryClient from '@/services/react-query';
import store, { persistor } from '@/store/index'; import store, { persistor } from '@/store/index';
import WrapperRegistry from '@/wrappers/index'; import WrapperRegistry from '@/wrappers/index';
const App: React.FC<AppProps> = ({ Component, pageProps }) => ( const App = ({ Component, pageProps }: AppProps): JSX.Element => (
<> <>
<Head> <Head>
<title>Reactive Resume</title> <title>Reactive Resume</title>