Passed
Pull Request — master (#114)
by Huu-Phat
04:15
created

cms/src/core/components/page/Container.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 9
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 6
mnd 0
bc 0
fnc 1
dl 0
loc 9
ccs 1
cts 1
cp 1
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
import { styled } from '@material-ui/core/styles'
2
3 3
const Container = styled('div')(({ theme }) => ({
4
  background: theme.colors.background,
5
  padding: theme.spaces.medium,
6
  height: '100%'
7
}))
8
9
export default Container
10