Skip to content

Commit

Permalink
Bare Bones Example
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbel committed Jun 30, 2020
1 parent 2439ac9 commit 89b5452
Show file tree
Hide file tree
Showing 8 changed files with 249 additions and 77 deletions.
229 changes: 229 additions & 0 deletions webqueue2-cra-test/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions webqueue2-cra-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
Expand Down
17 changes: 14 additions & 3 deletions webqueue2-cra-test/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,28 @@
<link rel="icon" href="favico.ico" />
should be written as
<link rel="icon" href="%PUBLIC_URL%/favico.ico" />
-->
-->
<html lang="en">
<head>
<!--
Allows app to be served from any subdirectory by setting the
"homepage": "/subdir/" property in package.json
-->
<base href="%PUBLIC_URL%/">

<title>webqueue2</title>
<meta name="theme-color" content="#DAAA00" />
<meta name="description" content="webqueue2"/>
<base href="%PUBLIC_URL%/">
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />

<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />

<!-- Material UI Resources -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand Down
38 changes: 0 additions & 38 deletions webqueue2-cra-test/src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +0,0 @@
.App {
text-align: center;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 2s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
Loading

0 comments on commit 89b5452

Please sign in to comment.