From 6e58d3e64e2f65d9f1f011e94fd4f322cd71cdd9 Mon Sep 17 00:00:00 2001 From: Antoine Kingue Date: Tue, 16 Aug 2022 23:53:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20fix=20lint=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/with-typescript/pages/_app.tsx | 8 ++++---- src/index.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/with-typescript/pages/_app.tsx b/examples/with-typescript/pages/_app.tsx index 3f5c9d5..8c4d5de 100644 --- a/examples/with-typescript/pages/_app.tsx +++ b/examples/with-typescript/pages/_app.tsx @@ -1,8 +1,8 @@ -import '../styles/globals.css' -import type { AppProps } from 'next/app' +import "../styles/globals.css"; +import type { AppProps } from "next/app"; function MyApp({ Component, pageProps }: AppProps) { - return + return ; } -export default MyApp +export default MyApp; diff --git a/src/index.tsx b/src/index.tsx index 278c9c3..4aa7635 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,4 +6,4 @@ const useTranslation = () => { return { locale }; }; -export default useTranslation; \ No newline at end of file +export default useTranslation;