How to solve React Type {children: Element} has no properties in common with type IntrinsicAttribute
React.js error “Type {children: Element} has no properties in common with type IntrinsicAttributes” occurs when we try to pass children prop to a component without any props. To resolve the error, you need to define and type the properties on the component.
The following is an example of how the error occurs.
const Box = () => { // 不带属性
return (
<div>
<p>Hello world</p>
</div>
);
};
const App = () => {
return (
<div className="App">
{/* ⛔️ Error: Type '{ children: Element; }' has no properties
in common with type 'IntrinsicAttributes'. ts(2559) */}
<Box>
<span>Test</span>
</Box>
</div>
);
};
export default App;
Notice that the Box component doesn't use any properties, but we are trying to pass the children property to it.
When a component is used with an opening and closing tag, everything between the tags is passed to the component as the children property.
<MyComponent>
Some children here
</MyComponent>
One way to fix the error is to use the component as if it does not need to take any subcomponents <Box />
.
const Box = () => {
return (
<div>
<p>Hello world</p>
</div>
);
};
const App = () => {
return (
<div className="App">
<Box />
</div>
);
};
export default App;
This will resolve the error since no child properties are passed.
However, if our component must take a children property, we must pass it in when declaring the component.
import React from 'react';
type BoxProps = {
children: React.ReactNode; // 👈️ type children
};
const Box = (props: BoxProps) => {
return <div>{props.children}</div>;
};
const App = () => {
return (
<div className="App">
<Box>
<span>Hello</span>
<span>Test</span>
</Box>
</div>
);
};
export default App;
We defined and typed a children property on the Box component to resolve the error.
Now you can pass the Box component to child components and render them.
Make sure our component defines all the properties it must take.
If you don't want to explicitly type your props and just want to turn off type checking, you can set the props object to any
type.
const Box = (props: any) => { // 关闭 props 的类型检查
return <div>{props.children}</div>;
};
const App = () => {
return (
<div className="App">
<Box>
<span>Hello</span>
<span>Test</span>
</Box>
</div>
);
};
export default App;
Whenever we use a component as:
<MyComponent>
Some children
</MyComponent>
You must define and type the children property on the specific component.
import React from 'react';
type BoxProps = {
children: React.ReactNode; // 👈️ 定义 children 属性
};
const Box = (props: BoxProps) => {
return <div>{props.children}</div>;
};
const App = () => {
return (
<div className="App">
<Box>
<span>Hello</span>
<span>Test</span>
</Box>
</div>
);
};
export default App;
If we don't need to pass any subcomponent to our component, just use the component as <MyComponent />
.
const Box = () => {
return <div>Hello world</div>;
};
const App = () => {
return (
<div className="App">
<Box />
</div>
);
};
export default App;
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Fix Uncaught ReferenceError: useState is not defined in React
Publish Date:2025/03/15 Views:142 Category:React
-
When we use the useState hook in our code but forget to import it, it generates the error Uncaught ReferenceError: useState is not defined. To fix this error, you need to import the hook before using it import {useState} from react . // ?️
React error Uncaught ReferenceError: process is not defined solution
Publish Date:2025/03/15 Views:116 Category:React
-
要解决 React 中的“Uncaught ReferenceError: process is not defined” 错误,需要在项目的根目录中打开终端并通过运行 `npm install react-scripts@latest` 更新 `react-scripts` 包的版本,并在必要时重新安装
How to solve the "Function components cannot have string refs" error in React
Publish Date:2025/03/15 Views:138 Category:React
-
当我们在函数组件中使用字符串作为引用时,会出现错误“Function components cannot have string refs”。 要解决该错误,需要使用 useRef() 钩子来获取一个可变的 ref 对象,我们可以将其用作组件
React Error Property 'X' does not exist on type 'Readonly<{}>'
Publish Date:2025/03/15 Views:139 Category:React
-
当我们尝试访问未键入的类组件的 props 或状态时,会发生 React.js 错误“Property does not exist on type 'Readonly '”。 要解决该错误,需要使用 React.Component 类上的泛型来输入该类的道具或状
Solve React's Unexpected default export of anonymous function error
Publish Date:2025/03/15 Views:119 Category:React
-
当我们尝试使用默认导出导出匿名函数时,会导致“Unexpected default export of anonymous function”警告。 要解决此错误,需要在导出函数之前为其命名。
React error Type '() => JSX.Element[]' is not assignable to type FunctionCompo
Publish Date:2025/03/15 Views:51 Category:React
-
当我们尝试从函数组件返回元素数组时,会发生 React.js 错误“Type '() => JSX.Element[]' is not assignable to type FunctionComponent”。 要解决该错误,需要将元素数组包装到 React 片段中。
Fix the value prop on input should not be null error in React
Publish Date:2025/03/15 Views:141 Category:React
-
The warning "value prop on input should not be null" is caused when we set the initial value of an input to null or override the initial value setting it to null, e.g. from an empty API response. Use a fallback value to solve this problem.
Property does not exist on type 'JSX.IntrinsicElements' error in React
Publish Date:2025/03/15 Views:188 Category:React
-
When the name of a component starts with a lowercase letter, an error "Property does not exist on type 'JSX.IntrinsicElements" will appear. To fix this error, you need to make sure you always start your component names with an uppercase letter, instal
React uses Router to get the current route
Publish Date:2025/03/15 Views:99 Category:React
-
Use the `useLocation()` hook to get the current route through React Router, such as `const location = useLocation()`. The hook returns the current location object. For example, we can access the pathname as location.pathname.