2022-05-16 17:53:51 +00:00
|
|
|
import type {NextPage} from 'next'
|
2022-05-06 05:47:13 +00:00
|
|
|
import Head from 'next/head'
|
|
|
|
import styles from '../styles/Home.module.css'
|
|
|
|
|
2022-05-16 17:53:51 +00:00
|
|
|
import Report from '../src/components/Report';
|
2022-05-11 11:51:31 +00:00
|
|
|
|
2022-05-06 05:47:13 +00:00
|
|
|
const Home: NextPage = () => {
|
|
|
|
return (
|
|
|
|
<div className={styles.container}>
|
|
|
|
<Head>
|
2022-05-16 14:24:25 +00:00
|
|
|
<title>Back-Test Report</title>
|
2022-05-16 17:53:51 +00:00
|
|
|
<meta name="description" content="Generated by create next app"/>
|
|
|
|
<link rel="icon" href="/favicon.ico"/>
|
2022-05-06 05:47:13 +00:00
|
|
|
</Head>
|
|
|
|
<main className={styles.main}>
|
2022-05-16 17:53:51 +00:00
|
|
|
<Report>
|
|
|
|
|
|
|
|
</Report>
|
2022-05-06 05:47:13 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Home
|