1 2 3 4 5
import { Navigate } from "react-router-dom"; export default function NewSurvey() { const id = crypto.randomUUID(); return <Navigate to={{ pathname: `/surveys/${id}` }} />; }