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

28 lines
709 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 TradingViewChart from '../src/TradingViewChart';
// This is for react-financial-chart
// import StockChart from '../src/StockChart';
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}>
<h2>Back-test Report</h2>
<TradingViewChart/>
</main>
</div>
)
}
export default Home