Passed
Push — feature/psd-api ( 32e3af...2ac100 )
by Kevin Van
14:46 queued 07:49
created

src/pages/psd.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 29
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 23
mnd 0
bc 0
fnc 1
dl 0
loc 29
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A psd.js ➔ PsdGamesOverviewPage 0 20 1
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