Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 27 |
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 MatchesScheurkalenderOverview from "../components/MatchesScheurkalender" |
||
7 | |||
8 | class ScheurkalenderPage extends Component { |
||
9 | render() { |
||
10 | return ( |
||
11 | <Layout> |
||
12 | <SEO |
||
13 | lang="nl-BE" |
||
14 | title="Matchoverzicht voorbereiding" |
||
15 | description="Overzicht van alle wedstrijden voor de scheurkalender" |
||
16 | path="scheurkalender" |
||
17 | /> |
||
18 | <div className={`games__template scheurkalender__template`}> |
||
19 | <MatchesScheurkalenderOverview /> |
||
20 | </div> |
||
21 | </Layout> |
||
22 | ) |
||
23 | } |
||
24 | } |
||
25 | |||
26 | export default ScheurkalenderPage |
||
27 |