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

CalendarPage.render   A

Complexity

Conditions 1

Size

Total Lines 15
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 14
dl 0
loc 15
c 0
b 0
f 0
rs 9.7
cc 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