import React from "react"; import { Box } from "@mui/material"; import { useNavigate } from "react-router-dom"; import Intro from "../components/Intro"; import BenchmarkCreateForm from "../components/BenchmarkCreateForm"; function HomePage() { const navigate = useNavigate(); const handleStartGeneration = (sid, isDefaultDocument) => { navigate( `/benchmark-generation?session=${sid}&isDefault=${ isDefaultDocument ? "true" : "false" }` ); }; return ( <> ); } export default HomePage;