Use the spread operator
const {propOne, propTwo, ...leftOver} = this.props;
// `leftOver` contains everything except `propOne` and `propTwo`
So your example would become:
const {propOne, propTwo, children, ...props} = this.props;
<Component propOne={propOne} propTwo={propTwo} {...props}>
{children}
</Component>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…