Skip to content

Commit

Permalink
fix: eslint error 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeseon-han committed Dec 20, 2023
1 parent b1cbff5 commit 9be7faa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Inter } from "next/font/google";
import { Inter } from 'next/font/google'

const inter = Inter({ subsets: ["latin"] });
const inter = Inter({ subsets: ['latin'] })

export default function Home(): JSX.Element {
export default function Home (): JSX.Element {
return (
<main
className={`flex min-h-screen flex-col items-center justify-between p-24 ${inter.className}`}
Expand All @@ -11,5 +11,5 @@ export default function Home(): JSX.Element {
mara web
</div>
</main>
);
)
}

0 comments on commit 9be7faa

Please sign in to comment.