我的反应有问题。 我应该如何在其他组件上使用道具? 我想使用其他功能组件...
export const MainComponent = (props: ImportantProps): JSX.Element => {
return (
<OtherComponent {...this.props} />
);
export default function OtherComponent(props: ImportantProps) {
///
}