diff --git a/web-app/.gitignore b/web-app/.gitignore
new file mode 100644
index 000000000..4d29575de
--- /dev/null
+++ b/web-app/.gitignore
@@ -0,0 +1,23 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
diff --git a/web-app/README.md b/web-app/README.md
new file mode 100644
index 000000000..89b278ae3
--- /dev/null
+++ b/web-app/README.md
@@ -0,0 +1,68 @@
+This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+
+## Available Scripts
+
+In the project directory, you can run:
+
+### `yarn start`
+
+Runs the app in the development mode.
+Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
+
+The page will reload if you make edits.
+You will also see any lint errors in the console.
+
+### `yarn test`
+
+Launches the test runner in the interactive watch mode.
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+
+### `yarn build`
+
+Builds the app for production to the `build` folder.
+It correctly bundles React in production mode and optimizes the build for the best performance.
+
+The build is minified and the filenames include the hashes.
+Your app is ready to be deployed!
+
+See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
+
+### `yarn eject`
+
+**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
+
+If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
+
+Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
+
+You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
+
+## Learn More
+
+You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
+
+To learn React, check out the [React documentation](https://reactjs.org/).
+
+### Code Splitting
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
+
+### Analyzing the Bundle Size
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
+
+### Making a Progressive Web App
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
+
+### Advanced Configuration
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
+
+### Deployment
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
+
+### `yarn build` fails to minify
+
+This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
diff --git a/web-app/jest.config.js b/web-app/jest.config.js
new file mode 100644
index 000000000..621f259c2
--- /dev/null
+++ b/web-app/jest.config.js
@@ -0,0 +1,188 @@
+// For a detailed explanation regarding each configuration property, visit:
+// https://jestjs.io/docs/en/configuration.html
+
+module.exports = {
+ // All imported modules in your tests should be mocked automatically
+ // automock: false,
+
+ // Stop running tests after `n` failures
+ // bail: 0,
+
+ // Respect "browser" field in package.json when resolving modules
+ // browser: false,
+
+ // The directory where Jest should store its cached dependency information
+ // cacheDirectory: "C:\\Users\\sucky\\AppData\\Local\\Temp\\jest",
+
+ // Automatically clear mock calls and instances between every test
+ // clearMocks: false,
+
+ // Indicates whether the coverage information should be collected while executing the test
+ // collectCoverage: false,
+
+ // An array of glob patterns indicating a set of files for which coverage information should be collected
+ // collectCoverageFrom: null,
+
+ // The directory where Jest should output its coverage files
+ // coverageDirectory: null,
+
+ // An array of regexp pattern strings used to skip coverage collection
+ // coveragePathIgnorePatterns: [
+ // "\\\\node_modules\\\\"
+ // ],
+
+ // A list of reporter names that Jest uses when writing coverage reports
+ // coverageReporters: [
+ // "json",
+ // "text",
+ // "lcov",
+ // "clover"
+ // ],
+
+ // An object that configures minimum threshold enforcement for coverage results
+ // coverageThreshold: null,
+
+ // A path to a custom dependency extractor
+ // dependencyExtractor: null,
+
+ // Make calling deprecated APIs throw helpful error messages
+ // errorOnDeprecated: false,
+
+ // Force coverage collection from ignored files using an array of glob patterns
+ // forceCoverageMatch: [],
+
+ // A path to a module which exports an async function that is triggered once before all test suites
+ // globalSetup: null,
+
+ // A path to a module which exports an async function that is triggered once after all test suites
+ // globalTeardown: null,
+
+ // A set of global variables that need to be available in all test environments
+ // globals: {},
+
+ // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
+ // maxWorkers: "50%",
+
+ // An array of directory names to be searched recursively up from the requiring module's location
+ // moduleDirectories: [
+ // "node_modules"
+ // ],
+
+ // An array of file extensions your modules use
+ // moduleFileExtensions: [
+ // "js",
+ // "json",
+ // "jsx",
+ // "ts",
+ // "tsx",
+ // "node"
+ // ],
+
+ // A map from regular expressions to module names that allow to stub out resources with a single module
+ // moduleNameMapper: {},
+
+ // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
+ // modulePathIgnorePatterns: [],
+
+ // Activates notifications for test results
+ // notify: false,
+
+ // An enum that specifies notification mode. Requires { notify: true }
+ // notifyMode: "failure-change",
+
+ // A preset that is used as a base for Jest's configuration
+ // preset: null,
+
+ // Run tests from one or more projects
+ // projects: null,
+
+ // Use this configuration option to add custom reporters to Jest
+ // reporters: undefined,
+
+ // Automatically reset mock state between every test
+ // resetMocks: false,
+
+ // Reset the module registry before running each individual test
+ // resetModules: false,
+
+ // A path to a custom resolver
+ // resolver: null,
+
+ // Automatically restore mock state between every test
+ // restoreMocks: false,
+
+ // The root directory that Jest should scan for tests and modules within
+ // rootDir: null,
+
+ // A list of paths to directories that Jest should use to search for files in
+ // roots: [
+ // ""
+ // ],
+
+ // Allows you to use a custom runner instead of Jest's default test runner
+ // runner: "jest-runner",
+
+ // The paths to modules that run some code to configure or set up the testing environment before each test
+ // setupFiles: [],
+
+ // A list of paths to modules that run some code to configure or set up the testing framework before each test
+ // setupFilesAfterEnv: [],
+
+ // A list of paths to snapshot serializer modules Jest should use for snapshot testing
+ // snapshotSerializers: [],
+
+ // The test environment that will be used for testing
+ // testEnvironment: "jest-environment-jsdom",
+
+ // Options that will be passed to the testEnvironment
+ // testEnvironmentOptions: {},
+
+ // Adds a location field to test results
+ // testLocationInResults: false,
+
+ // The glob patterns Jest uses to detect test files
+ // testMatch: [
+ // "**/__tests__/**/*.[jt]s?(x)",
+ // "**/?(*.)+(spec|test).[tj]s?(x)"
+ // ],
+
+ // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
+ // testPathIgnorePatterns: [
+ // "\\\\node_modules\\\\"
+ // ],
+
+ // The regexp pattern or array of patterns that Jest uses to detect test files
+ // testRegex: [],
+
+ // This option allows the use of a custom results processor
+ // testResultsProcessor: null,
+
+ // This option allows use of a custom test runner
+ // testRunner: "jasmine2",
+
+ // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
+ // testURL: "http://localhost",
+
+ // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
+ // timers: "real",
+
+ // A map from regular expressions to paths to transformers
+ // transform: null,
+
+ // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
+ // transformIgnorePatterns: [
+ // "\\\\node_modules\\\\"
+ // ],
+
+ // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
+ // unmockedModulePathPatterns: undefined,
+
+ // Indicates whether each individual test should be reported during the run
+ // verbose: null,
+
+ // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
+ // watchPathIgnorePatterns: [],
+
+ // Whether to use watchman for file crawling
+ // watchman: true,
+};
diff --git a/web-app/package.json b/web-app/package.json
new file mode 100644
index 000000000..8d11c0eba
--- /dev/null
+++ b/web-app/package.json
@@ -0,0 +1,43 @@
+{
+ "name": "web-app",
+ "version": "0.1.0",
+ "private": true,
+ "dependencies": {
+ "@testing-library/jest-dom": "^4.2.4",
+ "@testing-library/react": "^9.3.3",
+ "@testing-library/user-event": "^7.1.2",
+ "babel": "^6.23.0",
+ "babel-jest": "^24.9.0",
+ "jest": "^24.9.0",
+ "react": "^16.12.0",
+ "react-dom": "^16.12.0",
+ "react-scripts": "3.3.0"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "eject": "react-scripts eject"
+ },
+ "eslintConfig": {
+ "extends": "react-app"
+ },
+ "browserslist": {
+ "production": [
+ ">0.2%",
+ "not dead",
+ "not op_mini all"
+ ],
+ "development": [
+ "last 1 chrome version",
+ "last 1 firefox version",
+ "last 1 safari version"
+ ]
+ },
+ "description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
+ "main": "index.js",
+ "devDependencies": {},
+ "keywords": [],
+ "author": "",
+ "license": "ISC"
+}
diff --git a/web-app/public/favicon.ico b/web-app/public/favicon.ico
new file mode 100644
index 000000000..a11777cc4
Binary files /dev/null and b/web-app/public/favicon.ico differ
diff --git a/web-app/public/index.html b/web-app/public/index.html
new file mode 100644
index 000000000..aa069f27c
--- /dev/null
+++ b/web-app/public/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ React App
+
+
+
+
+
+
+
diff --git a/web-app/public/logo192.png b/web-app/public/logo192.png
new file mode 100644
index 000000000..fc44b0a37
Binary files /dev/null and b/web-app/public/logo192.png differ
diff --git a/web-app/public/logo512.png b/web-app/public/logo512.png
new file mode 100644
index 000000000..a4e47a654
Binary files /dev/null and b/web-app/public/logo512.png differ
diff --git a/web-app/public/manifest.json b/web-app/public/manifest.json
new file mode 100644
index 000000000..080d6c77a
--- /dev/null
+++ b/web-app/public/manifest.json
@@ -0,0 +1,25 @@
+{
+ "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/web-app/public/robots.txt b/web-app/public/robots.txt
new file mode 100644
index 000000000..01b0f9a10
--- /dev/null
+++ b/web-app/public/robots.txt
@@ -0,0 +1,2 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
diff --git a/web-app/src/App.css b/web-app/src/App.css
new file mode 100644
index 000000000..96a3c4a25
--- /dev/null
+++ b/web-app/src/App.css
@@ -0,0 +1,123 @@
+:root {
+ --black: #0d0d0d;
+ --red: #ff2d2b;
+}
+
+.scoreboard {
+ width: 58%;
+ margin: 20px auto;
+ background-color: #0b5402;
+ color: white;
+ border-radius: 0.5rem;
+
+ padding: 5rem;
+ border: 4px solid #aaaaaa;
+}
+
+.topRow {
+ display: flex;
+ justify-content: space-around;
+ place-items: center;
+ /* height: 20rem; */
+}
+
+.home,
+.away {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+ place-items: center;
+ border: 3px solid white;
+ border-radius: 0.5rem;
+ width: 15rem;
+}
+
+.home {
+ background-color: #656565;
+}
+
+.away {
+ background-color: #af750a;
+}
+
+.home__name,
+.away__name,
+.down__title,
+.toGo__title,
+.ballOn__title,
+.quarter__title {
+ text-transform: uppercase;
+ font-size: 3rem;
+ padding: 2rem;
+}
+
+.home__score,
+.away__score {
+ font-family: "Ozone";
+ font-size: 7rem;
+ width: 90%;
+ text-align: center;
+ background-color: var(--black);
+ color: var(--red);
+ padding: 5%;
+}
+
+.timer {
+ font-family: "Ozone";
+ font-size: 9rem;
+ padding: 2rem;
+ text-align: center;
+ background-color: var(--black);
+ border: 2px solid white;
+ border-radius: 6px;
+}
+
+.bottomRow {
+ display: flex;
+ justify-content: space-around;
+ place-items: center;
+ height: 20rem;
+}
+
+.down,
+.toGo,
+.ballOn,
+.quarter {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+ place-items: center;
+}
+
+.down__value,
+.toGo__value,
+.ballOn__value,
+.quarter__value {
+ font-family: "Ozone";
+ font-size: 5rem;
+ color: var(--red);
+ width: 7rem;
+ text-align: center;
+ background-color: var(--black);
+ margin-top: 1rem;
+ border-radius: 4px;
+ padding: 1.6rem;
+ border: 1px solid white;
+}
+
+.buttons {
+ width: 50%;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-around;
+}
+
+.homeButtons__touchdown,
+.homeButtons__fieldGoal,
+.awayButtons__touchdown,
+.awayButtons__fieldGoal {
+ margin: 1rem;
+ font-size: 2rem;
+ border-radius: 4px;
+}
diff --git a/web-app/src/App.js b/web-app/src/App.js
new file mode 100644
index 000000000..349a048ff
--- /dev/null
+++ b/web-app/src/App.js
@@ -0,0 +1,56 @@
+import React, { useState } from 'react';
+import './App.css';
+
+
+import Display from './components/display.js';
+import Dashboard from './components/dashboard.js';
+
+
+function App() {
+
+ const [ homeHits, setHomeHits] = useState(0);
+ const [ awayHits, setAwayHits] = useState(0);
+ const [ balls, setBalls] = useState(0);
+ const [ strikes, setStrikes] = useState(0);
+ const [ outs, setOuts] = useState(0);
+ const [ whosUp, setWhosUp] = useState('Home'); //determines if home(1) or away(2) is up;
+ const [ innings, setInnings] = useState(1);
+
+
+
+
+
+ return (
+
+
+
+
+
+
+ );
+}
+
+export default App;
diff --git a/web-app/src/App.test.js b/web-app/src/App.test.js
new file mode 100644
index 000000000..9ef491f7a
--- /dev/null
+++ b/web-app/src/App.test.js
@@ -0,0 +1,51 @@
+import React from 'react';
+// import ReactDOM from 'react-dom';
+import { render } from '@testing-library/react';
+import * as rtl from '@testing-library/react';
+import '@testing-library/jest-dom/extend-expect';
+
+import App from './App.js';
+import Display from './components/display.js';
+import Dashboard, {addBall, addStrike} from './components/dashboard.js';
+
+// const { getByText } = render();
+
+test('renders display component', () => {
+ const { getByText } = render();
+ const displayElement = getByText(/home/i);
+ expect(displayElement).toBeInTheDocument();
+});
+
+test('renders dashboard component', () =>{
+ const {getByText} = render();
+ const dashboardElement = getByText(/ball/i);
+ expect(dashboardElement).toBeInTheDocument();
+
+});
+
+//this is testing area for things located in dashboard
+
+
+describe('balls and strikes reset to 0 when you hit 3 strikes or 4 balls', () =>{
+ it('balls resets properly to 0', () =>{
+ // const dash = require('./components/dashboard.js');
+
+ const expected = 0;
+ const ballcount = 3;
+ const actual = addBall(ballcount);
+
+ expect(actual).toBe(expected); //this should be true that 0 will be returned;
+ });
+
+ it('strikes resets properly to 0', () =>{
+
+ const expected = 0;
+ const strikecount = 2;
+ const actual = addStrike(strikecount, 0);
+
+ expect(actual[0]).toBe(expected);
+ })
+
+
+
+});
diff --git a/web-app/src/components/dashboard.js b/web-app/src/components/dashboard.js
new file mode 100644
index 000000000..895eda9dc
--- /dev/null
+++ b/web-app/src/components/dashboard.js
@@ -0,0 +1,133 @@
+import React from 'react';
+
+
+
+const Dashboard = (props) =>{
+
+
+ return(
+
+
+
+ {/* TODO STEP 4 - Now we need to attach our state setter functions to click listeners. */}
+
+
+
+
+
+
+