Test Failed
Push — master ( 41e89b...cfe199 )
by ANTHONIUS
04:45 queued 12s
created

ui/web/pages/index.tsx   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 19
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 16
c 0
b 0
f 0
dl 0
loc 19
rs 10
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A index.tsx ➔ Index 0 11 1
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