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