Skip to content

Commit 3ac619e

Browse files
committed
Setting up our React app
1 parent 61ef772 commit 3ac619e

25 files changed

+738
-51
lines changed

package-lock.json

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

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6+
"aws-amplify": "^1.1.40",
67
"react": "^16.9.0",
8+
"react-bootstrap": "^0.32.4",
79
"react-dom": "^16.9.0",
10+
"react-router-bootstrap": "^0.25.0",
11+
"react-router-dom": "^5.0.1",
812
"react-scripts": "3.1.2"
913
},
1014
"scripts": {

public/android-chrome-192x192.png

2.94 KB
Loading

public/android-chrome-256x256.png

7.48 KB
Loading

public/apple-touch-icon.png

2.63 KB
Loading

public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#da532c</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

public/favicon-16x16.png

659 Bytes
Loading

public/favicon-32x32.png

885 Bytes
Loading

public/favicon.ico

-14.6 KB
Binary file not shown.

public/index.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
65
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<meta name="theme-color" content="#000000" />
8-
<meta
9-
name="description"
10-
content="Web site created using create-react-app"
11-
/>
12-
<link rel="apple-touch-icon" href="logo192.png" />
6+
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png">
7+
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-32x32.png" sizes="32x32">
8+
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-16x16.png" sizes="16x16">
9+
<link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#5bbad5">
10+
<meta name="description" content="A simple note taking app" />
11+
<meta name="theme-color" content="#ffffff">
12+
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=PT+Serif|Open+Sans:300,400,600,700,800">
13+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
1314
<!--
1415
manifest.json provides metadata used when your web app is installed on a
1516
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

0 commit comments

Comments
 (0)