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

25 lines
585 B
TypeScript

import type { NextPage } from 'next'
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
import StockChart from '../src/StockChart';
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<StockChart> </StockChart>
</main>
</div>
)
}
export default Home