Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 19 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from 'react'; |
||
2 | import Container from '@material-ui/core/Container'; |
||
3 | import Typography from '@material-ui/core/Typography'; |
||
4 | import Box from '@material-ui/core/Box'; |
||
5 | import ProTip from '../src/ProTip'; |
||
6 | |||
7 | export default function Index() { |
||
8 | return ( |
||
9 | <Container maxWidth="sm"> |
||
10 | <Box my={4}> |
||
11 | <Typography variant="h4" component="h1" gutterBottom> |
||
12 | Next.js with TypeScript example |
||
13 | </Typography> |
||
14 | <ProTip /> |
||
15 | </Box> |
||
16 | </Container> |
||
17 | ); |
||
18 | } |
||
19 |