Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 29 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from "react" |
||
2 | |||
3 | import Layout from "../layouts/index" |
||
4 | |||
5 | import SEO from "../components/seo" |
||
6 | import PsdTraining from "../components/psd-training" |
||
7 | |||
8 | export default function PsdGamesOverviewPage() { |
||
9 | return ( |
||
10 | <Layout> |
||
11 | <SEO |
||
12 | lang="nl-BE" |
||
13 | title="Matchoverzicht voorbereiding" |
||
14 | description="Overzicht van de voorbereiding." |
||
15 | path={this.props.location.pathname} |
||
16 | /> |
||
17 | |||
18 | |||
19 | <div className={"games__template"}> |
||
20 | Wedstrijden en trainingen<br/> |
||
21 | <br/> |
||
22 | -- Trainingsblock<br/> |
||
23 | ?FDFD <PsdTraining /> ASLDLSD |
||
24 | -- Friendlies block |
||
25 | </div> |
||
26 | </Layout> |
||
27 | ) |
||
28 | } |
||
29 |