Passed
Push — master ( 9a73f0...7331d4 )
by Huu-Phat
01:50 queued 11s
created

cms/src/posts/components/Posts/Paper.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 12
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 9
mnd 0
bc 0
fnc 1
dl 0
loc 12
ccs 1
cts 1
cp 1
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
import { withStyles } from '@material-ui/core/styles'
2
import Paper from '@material-ui/core/Paper'
3
4 4
const StylePaper = withStyles(theme => ({
5
  root: {
6
    width: '100%',
7
    marginBottom: theme.spacing(2),
8
    boxShadow: 'none'
9
  }
10
}))(Paper)
11
12
export default StylePaper
13