๐จ Component cannot be used as a JSX component. Its return type is not a valid JSX element
๐จ ์๋ฌ ๋ฐ์
ํ๋ก์ ํธ ์งํ ์ค Layout ์ปดํฌ๋ํธ์์ ์๋ฌ๊ฐ ๋ฐ์ํ๋ค.
โ ์๋ฌ ์์ธ
ํด๋น ์ปดํฌ๋ํธ๋ฅผ ํจ์ํ์ผ๋ก ์์ฑํ๋๋ฐ return ๋ฌธ์ด ์์๋ค.
๐จ ์๋ฌ ํด๊ฒฐ
// Page.tsx
...
export default function Page({ children }: Props) {
return <Container>{children}</Container>
}
...
Leave a comment