-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated with explicit children in mind #510
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,12 +59,8 @@ Relevant for components that accept other React components as props. | |
|
||
```tsx | ||
export declare interface AppProps { | ||
children1: JSX.Element; // bad, doesnt account for arrays | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't necessarily mean it's bad. This might be intended. |
||
children2: JSX.Element | JSX.Element[]; // meh, doesn't accept strings | ||
children3: React.ReactChildren; // despite the name, not at all an appropriate type; it is a utility | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This type is deprecated. |
||
children4: React.ReactChild[]; // better, accepts array children | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This type is deprecated. |
||
children: React.ReactNode; // best, accepts everything (see edge case below) | ||
functionChildren: (name: string) => React.ReactNode; // recommended function as a child render prop type | ||
Comment on lines
-62
to
-67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no sensible recommendation for render prop type since it depends heavily on what you want to do. The pattern itself is rarely used nowadays so let's not overwhelm people with React patterns at this point. |
||
children?: React.ReactNode; // best, accepts everything React can render | ||
childrenElement: JSX.Element; // A single React element | ||
style?: React.CSSProperties; // to pass through style props | ||
onChange?: React.FormEventHandler<HTMLInputElement>; // form events! the generic parameter is the type of event.target | ||
// more info: https://react-typescript-cheatsheet.netlify.app/docs/advanced/patterns_by_usecase/#wrappingmirroring | ||
|
@@ -80,7 +76,7 @@ Before the [React 18 type updates](https://github.com/DefinitelyTyped/Definitely | |
|
||
```tsx | ||
type Props = { | ||
children: React.ReactNode; | ||
children?: React.ReactNode; | ||
}; | ||
|
||
function Comp({ children }: Props) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,6 @@ function CommentList({ data }: WithDataProps<typeof comments>) { | |
} | ||
interface BlogPostProps extends WithDataProps<string> { | ||
id: number; | ||
// children: ReactNode; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unclear why this was here. better remove it if it's unused. |
||
} | ||
function BlogPost({ data, id }: BlogPostProps) { | ||
return ( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
children
now have to be defined explicitly so this section is obsolete.