Skip to content

Commit

Permalink
🚨 fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineKM committed Aug 16, 2022
1 parent b45f533 commit 6e58d3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/with-typescript/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -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 <Component {...pageProps} />
return <Component {...pageProps} />;
}

export default MyApp
export default MyApp;
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ const useTranslation = () => {
return { locale };
};

export default useTranslation;
export default useTranslation;

0 comments on commit 6e58d3e

Please sign in to comment.