Passed
Push — release/2.3.3 ( 4099f0...875edd )
by Kevin Van
04:52 queued 03:43
created

src/pages/club/calendar.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 29
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A CalendarPage.render 0 15 1
1
import React, { Component } from "react"
2
3
import Layout from "../../layouts/index"
4
import SEO from "../../components/seo"
5
6
import Calendar from "../../components/Calendar"
7
8
class CalendarPage extends Component {
9
  render() {
10
    return (
11
      <Layout>
12
        <SEO
13
          lang="nl-BE"
14
          title="Evenementen Kalender"
15
          description="Overzicht van club evenementen"
16
          path="/club/calendar"
17
        />
18
19
        <section className="limited-width_wrapper club__calendar">
20
          <h1>Club kalender</h1>
21
          <Calendar />
22
        </section>
23
      </Layout>
24
    )
25
  }
26
}
27
28
export default CalendarPage
29