import type {NextPage} from 'next' import Head from 'next/head' import styles from '../styles/Home.module.css' import ReportDetails from '../components/ReportDetails'; import ReportNavigator from '../components/ReportNavigator'; import {useState} from "react"; const Home: NextPage = () => { const [currentReport, setCurrentReport] = useState(); return (
Back-Test Report
{ setCurrentReport(reportEntry) }}/> { currentReport ? : null }
) } export default Home