Skip to content

Commit 09729a0

Browse files
committed
jest
2 parents dc2af90 + da6adb9 commit 09729a0

File tree

257 files changed

+1080
-934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

257 files changed

+1080
-934
lines changed

demo-app/src/client/Components/Board.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Board extends Component<{}, BoardState> {
3030

3131
//added void
3232
componentDidUpdate(): void {
33-
this.checkForWinner();
33+
this.checkForWinner()
3434
}
3535

3636
/**
@@ -116,8 +116,8 @@ class Board extends Component<{}, BoardState> {
116116
}
117117

118118
//added type for render
119-
render(): JSX.Element {
120-
const rows: Array<JSX.Element> = [];
119+
render(): JSX.Element {
120+
const rows: Array<JSX.Element> = [];
121121
for (let i = 0; i < 3; i++) {
122122
rows.push(
123123
<Row key={i} row={i} handleBoxClick={this.handleBoxClick} values={this.state.board[i]} />,

demo-app/src/client/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<title>Reactime MVP</title>
4+
<title>Reactime</title>
5+
<!-- <link rel="icon" type="image/x-icon" href="../../../assets/logos/blackWhiteSquareIcon.png"> -->
56
<link rel="stylesheet" type="text/css" href="./style.css">
67
</head>
78
<body>

docs/assets/main.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/style.css

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -327,17 +327,14 @@ dd {
327327
}
328328

329329
/* Footer */
330-
.tsd-generator {
330+
footer {
331331
border-top: 1px solid var(--color-accent);
332332
padding-top: 1rem;
333333
padding-bottom: 1rem;
334334
max-height: 3.5rem;
335335
}
336-
337-
.tsd-generator > p {
338-
margin-top: 0;
339-
margin-bottom: 0;
340-
padding: 0 1rem;
336+
.tsd-generator {
337+
margin: 0 1em;
341338
}
342339

343340
.container-main {
@@ -405,7 +402,8 @@ dd {
405402
}
406403
body {
407404
background: var(--color-background);
408-
font-family: "Segoe UI", sans-serif;
405+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
406+
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
409407
font-size: 16px;
410408
color: var(--color-text);
411409
}

docs/classes/app_components_Buttons_Tutorial.default.html

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

docs/classes/app_components_ErrorHandling_ErrorHandler.default.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

docs/classes/backend_models_routes.Route.html

Lines changed: 5 additions & 4 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)