mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-14 19:13:52 +00:00
25 lines
585 B
TypeScript
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
|