Passed
Pull Request — develop (#758)
by Kevin Van
04:28
created

srcBU/pages/scheurkalender.tsx   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 26
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A ScheurkalenderPage.render 0 13 1
1
import React, { Component } from "react"
2
3
import MatchesScheurkalenderOverview from "../components/MatchesScheurkalender"
4
import SEO from "../components/seo"
5
import Layout from "../layouts/index"
6
7
class ScheurkalenderPage extends Component {
8
  render() {
9
    return (
10
      <Layout>
11
        <SEO
12
          lang="nl-BE"
13
          title="Matchoverzicht voorbereiding"
14
          description="Overzicht van alle wedstrijden voor de scheurkalender"
15
          path="scheurkalender"
16
        />
17
        <div className={`games__template scheurkalender__template`}>
18
          <MatchesScheurkalenderOverview />
19
        </div>
20
      </Layout>
21
    )
22
  }
23
}
24
25
export default ScheurkalenderPage
26