diff --git a/webclient/public/favicon.ico b/webclient/public/favicon.ico deleted file mode 100644 index a11777c..0000000 Binary files a/webclient/public/favicon.ico and /dev/null differ diff --git a/webclient/public/logo192.png b/webclient/public/logo192.png deleted file mode 100644 index fc44b0a..0000000 Binary files a/webclient/public/logo192.png and /dev/null differ diff --git a/webclient/public/logo512.png b/webclient/public/logo512.png deleted file mode 100644 index a4e47a6..0000000 Binary files a/webclient/public/logo512.png and /dev/null differ diff --git a/webclient/public/manifest.json b/webclient/public/manifest.json deleted file mode 100644 index 080d6c7..0000000 --- a/webclient/public/manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "short_name": "React App", - "name": "Create React App Sample", - "icons": [ - { - "src": "favicon.ico", - "sizes": "64x64 32x32 24x24 16x16", - "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": ".", - "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" -} diff --git a/webclient/public/robots.txt b/webclient/public/robots.txt deleted file mode 100644 index 01b0f9a..0000000 --- a/webclient/public/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * diff --git a/webclient/src/App.css b/webclient/src/App.css deleted file mode 100644 index 74b5e05..0000000 --- a/webclient/src/App.css +++ /dev/null @@ -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 20s 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); - } -} diff --git a/webclient/src/App.js b/webclient/src/App.js index ce9cbd2..f83c896 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -1,23 +1,10 @@ import React from 'react'; -import logo from './logo.svg'; -import './App.css'; function App() { return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - +
+
+ Hello world
); diff --git a/webclient/src/App.test.js b/webclient/src/App.test.js deleted file mode 100644 index 4db7ebc..0000000 --- a/webclient/src/App.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import { render } from '@testing-library/react'; -import App from './App'; - -test('renders learn react link', () => { - const { getByText } = render(); - const linkElement = getByText(/learn react/i); - expect(linkElement).toBeInTheDocument(); -}); diff --git a/webclient/src/index.css b/webclient/src/index.css deleted file mode 100644 index ec2585e..0000000 --- a/webclient/src/index.css +++ /dev/null @@ -1,13 +0,0 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; -} diff --git a/webclient/src/index.js b/webclient/src/index.js index 87d1be5..82c1a6b 100644 --- a/webclient/src/index.js +++ b/webclient/src/index.js @@ -1,6 +1,5 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import './index.css'; import App from './App'; import * as serviceWorker from './serviceWorker'; diff --git a/webclient/src/logo.svg b/webclient/src/logo.svg deleted file mode 100644 index 6b60c10..0000000 --- a/webclient/src/logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/webclient/src/setupTests.js b/webclient/src/setupTests.js deleted file mode 100644 index 74b1a27..0000000 --- a/webclient/src/setupTests.js +++ /dev/null @@ -1,5 +0,0 @@ -// jest-dom adds custom jest matchers for asserting on DOM nodes. -// allows you to do things like: -// expect(element).toHaveTextContent(/react/i) -// learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom/extend-expect';