Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 29 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
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 |