Skip to content

Commit

Permalink
[MOD] apps/wanted 변경점 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
ohdal committed May 13, 2023
1 parent c125dc6 commit 55ce62c
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions apps/wanted/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
import './globals.css'
import { Inter } from 'next/font/google'
import './globals.css';
import { Inter } from 'next/font/google';

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

export const metadata = {
title: 'Create Next App',
title: 'create next app',
description: 'Generated by create next app',
}
};

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={inter.className}>
{children}
</body>
<body className={inter.className}>{children}</body>
</html>
)
);
}

0 comments on commit 55ce62c

Please sign in to comment.