Код: Выделить всё
const MyComponent = ({ variable }: { variable: string }) => {
return variable === "xxx" ? : null;
};
Код: Выделить всё
const MyComponent = ({ variable }: { variable: string }) => {
const navigate = useNavigate();
useEffect(() => {
if (variable === "xxx") {
navigate("/some/location", { replace: true })
}
}, [navigate, variable]);
return null;
};
Подробнее здесь: https://stackoverflow.com/questions/798 ... act-router
Мобильная версия