3
Làm thế nào tôi có thể tạo ra một thành phần React nếu If hành động như một người thực sự nếu mà trong bản mô tả?
Tôi đã tạo một <If />thành phần chức năng đơn giản bằng React: import React, { ReactElement } from "react"; interface Props { condition: boolean; comment?: any; } export function If(props: React.PropsWithChildren<Props>): ReactElement | null { if (props.condition) { return <>{props.children}</>; } return null; } Nó cho phép tôi viết …