Passed
Pull Request — develop (#758)
by Kevin Van
10:13 queued 04:10
created

srcBU/pages/club/responsibilities.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 22
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A ResponsibilitiesPage.render 0 10 1
1
import React, { Component } from "react"
2
3
import SEO from "../../components/seo"
4
import Layout from "../../layouts/index"
5
6
class ResponsibilitiesPage extends Component {
7
  render() {
8
    return (
9
      <Layout>
10
        <SEO lang="nl-BE" title="Verantwoordelijkheden" path={this.props.location.pathname} />
11
12
        <div className={`limited-width_wrapper`}>
13
          <h1>Verantwoordelijkheden</h1>
14
          Pagina wordt zo snel mogelijk aangevuld.
15
        </div>
16
      </Layout>
17
    )
18
  }
19
}
20
21
export default ResponsibilitiesPage
22