you can use,
this.props.history.push("/template", { ...response })
or
this.props.history.push("/template", { response: response })
then you can access the parsed data from /template
component by following code,
const state = this.props.location.state
Read more about React Session History Management