src/pages/WelcomePage.tsx   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 16
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A WelcomePage.tsx ➔ WelcomePage 0 10 1
1
import React from "react";
2
3
function WelcomePage() {
4
  return (
5
    <React.Fragment>
6
      <h1>Welcome!</h1>
7
      <p>
8
        You can upload, view and share your images and videos using this website,
9
        its source code and more details are available <a href="https://github.com/przemo199/replayer">here</a>
10
      </p>
11
    </React.Fragment>
12
  );
13
}
14
15
export default WelcomePage;
16