DEV Community

Discussion on: 7 Tips for Clean React TypeScript Code you Must Know 🧹✨

Collapse
 
brense profile image
Rense Bakker

You can use this as a type for your components that use children:

function My component({children, otherProp}:React.PropsWithChildren<{otherProp:string}>){
  // ...
}
Enter fullscreen mode Exit fullscreen mode