Cancelled
Push — release/2.1.0 ( 9888ea )
by Kevin Van
09:55 queued 09:52
created

src/components/sponsor.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 14
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A Sponsor.render 0 4 1
1
import React, { Component } from "react"
2
3
import { SingleImageCard } from "../components/cards"
4
5
class Sponsor extends Component {
6
  render() {
7
    const { localFile, uri = null } = this.props
8
9
    return <SingleImageCard localFile={localFile} link={uri} />
10
  }
11
}
12
13
export default Sponsor
14