How to use children with React Stateless Functional Component in TypeScript?

匿名 (未验证) 提交于 2019-12-03 01:26:01

问题:

Using TypeScript with React we no longer have to extend React.Props in order for the compiler to know that all react component props can have children:

interface MyProps { }  class MyComponent extends React.Component {   public render(): JSX.Element {     return 
{this.props.children}
; } }

However, it doesn't seem to be the case for stateless functional components:

const MyStatelessComponent = (props: MyProps) => {   return (     
{props.children}
); };

Emits the compile error:

Error:(102, 17) TS2339: Property 'children' does not exist on type 'MyProps'.

I guess this is because there's really no way for the compiler to know that a vanilla function is going to be given children in the props argument.

So the question is how should we use children in a stateless functional component in TypeScript?

I could go back to the old way of MyProps extends React.Props, but the Props interface is marked as deprecated, and stateless components don't have or support a Props.ref as I understand it.

So I could define the children prop manually:

interface MyProps {   children?: React.ReactNode; } 

First: is ReactNode the correct type?

Second: I have to write children as optional (?) or else consumers will think that children is supposed to be an attribute of the component (), and raise an error if not provided with a value.

It seems like I'm missing something. Can anyone provide some clarity on whether my last example is the way to use stateless functional components with children in React?

回答1:

For now, you can use the React.StatelessComponent type, as:

const MyStatelessComponent : React.StatelessComponent = props =>     
{props.children}

What I have added there is setting the return type of the component to React.StatelessComponent type.

For a component with your own custom props (like MyProps interface):

const MyStatelessComponent : React.StatelessComponent = props =>     

{props.propInMyProps}

{props.children}

Now, props has got the children property as well as those from MyProps interface.

I checked this in typescript version 2.0.7

Additionally, you can use React.SFC instead of React.StatelessComponent for brevity.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!