Skip to content

Commit e17adbf

Browse files
committed
↔️ match project structure to new cra projects
1 parent 655b9ea commit e17adbf

File tree

4 files changed

+6679
-1
lines changed

4 files changed

+6679
-1
lines changed
File renamed without changes.

public/manifest.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"short_name": "Calculator",
3+
"name": "React Calculator Example App",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
}
10+
],
11+
"start_url": "./index.html",
12+
"display": "standalone",
13+
"theme_color": "#000000",
14+
"background_color": "#ffffff"
15+
}

src/logic/calculate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import isNumber from './isNumber';
66
* calculator data object.
77
*
88
* Calculator data object contains:
9-
* total:String the running total
9+
* total:s the running total
1010
* next:String the next number to be operated on with the total
1111
* operation:String +, -, etc.
1212
*/

0 commit comments

Comments
 (0)