mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-13 10:33:52 +00:00
24 lines
603 B
TypeScript
24 lines
603 B
TypeScript
import React from 'react';
|
|
import Container from '@material-ui/core/Container';
|
|
import Typography from '@material-ui/core/Typography';
|
|
import Box from '@material-ui/core/Box';
|
|
import Link from '@material-ui/core/Link';
|
|
|
|
import styles from '../styles/Home.module.css'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Container maxWidth="sm">
|
|
<Box my={4}>
|
|
<Typography variant="h4" component="h1" gutterBottom>
|
|
Next.js example
|
|
</Typography>
|
|
<Link href="/about" color="secondary">
|
|
Go to the about page
|
|
</Link>
|
|
</Box>
|
|
</Container>
|
|
);
|
|
}
|
|
|