beginners. I redirect to another component in one component
constructor(props: any) {
super(props);
this.props.history.push("/auth_manage")
};
The redirection is successful, but the rest of the component"s functions (render ()) and the like are executed, so how do you jump out of this component directly here?