Skip to content

Commit

Permalink
Fix: Hot Reload 에러, Hydration 에러 해결 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene-A-01 authored Jan 22, 2024
1 parent a717970 commit 7db29ea
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,14 @@ import React from "react";
import { ReactNode } from "react";

export default function TempLayout({ children }: { children: ReactNode }) {
return <div>{children}</div>;
return (
<html lang="ko">
<head>
<title>ListyWave</title>
</head>
<body>
<div>{children}</div>
</body>
</html>
);
}

0 comments on commit 7db29ea

Please sign in to comment.