正解は<Component {...props} />です。スプレッド演算子を使用してオブジェクトの全プロパティをpropsとして渡せます。例:const props = { name: "John", age: 30 }; <User {...props} />は<User name="John" age={30} />と同等です。