export default class Test extends React.Component {
constructor(props) {
super(props);
window.addEventListener("load", this.setLocation)
}
setLocation = (event) => {
event.preventDefault()
document.location.search = "data=5"
}
}