Skip to content

Commit 2b618aa

Browse files
committed
Format code
1 parent 600560d commit 2b618aa

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
"last 1 safari version"
3737
]
3838
}
39-
}
39+
}

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
p {
2121
line-height: 120%;
22-
}
22+
}

src/App.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ function App() {
77
}
88
return (
99
<div className="App">
10-
<header className="App-header">
11-
Endless Simple Idle Game
12-
</header>
10+
<header className="App-header">Endless Simple Idle Game</header>
1311
<p>Click the button to add points!</p>
14-
Points: <div id="points-display">{points}</div><br />
12+
Points: <div id="points-display">{points}</div>
13+
<br />
1514
<button onClick={() => addPointsFromClick()}>Click to Add Points</button>
1615
</div>
1716
);

src/logo.svg

Lines changed: 8 additions & 1 deletion
Loading

src/reportWebVitals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const reportWebVitals = onPerfEntry => {
1+
const reportWebVitals = (onPerfEntry) => {
22
if (onPerfEntry && onPerfEntry instanceof Function) {
33
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
44
getCLS(onPerfEntry);

0 commit comments

Comments
 (0)