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 Layout from "../layouts/index" |
||
4 | |||
5 | import SEO from "../components/seo" |
||
6 | |||
7 | import MatchesOverview from "../components/MatchesPreseason" |
||
8 | |||
9 | class GamesPage extends Component { |
||
10 | render() { |
||
11 | return ( |
||
12 | <Layout> |
||
13 | <SEO |
||
14 | lang="nl-BE" |
||
15 | title="Matchoverzicht voorbereiding" |
||
16 | description="Overzicht van alle gespeelde en toekomstige wedstrijden tijdens de voorbereiding van het nieuwe seizoen." |
||
17 | path={this.props.location.pathname} |
||
18 | /> |
||
19 | <div className={`games__template`}> |
||
20 | <MatchesOverview /> |
||
21 | </div> |
||
22 | </Layout> |
||
23 | ) |
||
24 | } |
||
25 | } |
||
26 | |||
27 | export default GamesPage |
||
28 |