src/component/SettingView.jsx   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 9
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A SettingView.render 0 2 1
1
import React from 'react';
2
import SettingTabContainer from './tab/SettingTabContainer';
3
4
export default class SettingView extends React.Component {
5
  render() {
6
    return (<SettingTabContainer id="settingTabs" />);
7
  }
8
}
9