Navigate
declare function Navigate(props: NavigateProps): null;
interface NavigateProps {
to: To;
replace?: boolean;
state?: any;
relative?: RelativeRoutingType;
}export const HomeComponent = () => {
return (
<div>
<h1>welcome to home</h1>
{user && <Navigate to="/dashboard" replace={true}/>}
</div>
);
};最后更新于