๐จ Type โ{โฆ}โ has no properties in common with type โIntrinsicAttributesโ
๐จ ์๋ฌ ๋ฐ์
ํ๋ก์ ํธ ๊ณผ์ ์ค _app.tsx
ํ์ผ์์ ์๋ฌ๊ฐ ๋ฐ์ํ๋ค.
Type '{...}' has no properties in common with type 'IntrinsicAttributes'
โ ์๋ฌ ์์ธ
ํด๋น ์ปดํฌ๋ํธ์ props์ธ children์ด ์กด์ฌํ์ง ์๋๋ค๋ ๋ป์ด๋ค.
๐จ ์๋ฌ ํด๊ฒฐ
props๋ฅผ ์ค์ ํด์ ํ์ ์ ์ง์ ํด์ฃผ์.
import React from "react";
interface Props {
children?: React.ReactNode;
[k: string]: any;
}
export default function Layout({ children, ...props }: Props) {
return <div>Layout</div>;
}
Props๋ฅผ interface๋ก ์ค์ ํด์ ํ์ ์ ์ง์ ํ๊ณ ์ปดํฌ๋ํธ์ ์ค์ ํด ์ฃผ์๋ค.
Leave a comment