mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
25 lines
554 B
TypeScript
25 lines
554 B
TypeScript
import type {NextPage} from 'next'
|
|
import Head from 'next/head'
|
|
import styles from '../styles/Home.module.css'
|
|
|
|
import Report from '../src/components/Report';
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<div className={styles.container}>
|
|
<Head>
|
|
<title>Back-Test Report</title>
|
|
<meta name="description" content="Generated by create next app"/>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
</Head>
|
|
<main className={styles.main}>
|
|
<Report>
|
|
|
|
</Report>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Home
|