bbgo_origin/apps/bbgo-backtest-report/pages/index.tsx
2022-05-17 01:53:51 +08:00

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