Skip to content

Commit

Permalink
fix: 빌드오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HoberMin committed Apr 18, 2024
1 parent af4c341 commit bc5fa12
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';

import './globals.css';
import '../style/globals.css';

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

Expand All @@ -10,7 +10,7 @@ export const metadata: Metadata = {
description: 'Generated by create next app',
};

export const RootLayout = ({
const RootLayout = ({
children,
}: Readonly<{
children: React.ReactNode;
Expand All @@ -21,3 +21,5 @@ export const RootLayout = ({
</html>
);
};

export default RootLayout;

0 comments on commit bc5fa12

Please sign in to comment.