bbgo_origin/apps/bbgo-backtest-report/pages/index.tsx

25 lines
585 B
TypeScript
Raw Normal View History

2022-05-06 05:47:13 +00:00
import type { NextPage } from 'next'
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
2022-05-11 11:51:31 +00:00
import StockChart from '../src/StockChart';
2022-05-06 05:47:13 +00:00
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}>
2022-05-11 11:51:31 +00:00
<StockChart> </StockChart>
2022-05-06 05:47:13 +00:00
</main>
</div>
)
}
export default Home