Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 199b7ee

Browse files
Live Statistics Web Project (#96)
1 parent 5a7e992 commit 199b7ee

File tree

36 files changed

+29660
-12
lines changed

36 files changed

+29660
-12
lines changed

statistics-react-web-app-project/README.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
![under_construction](https://user-images.githubusercontent.com/37651620/93677983-a7942e00-facc-11ea-8b6d-b57e73dc73bf.png)
1+
## Covid Statistics
2+
3+
## It's Live 🎉 Visit here ==> https://covid-statistics-react.netlify.app/
4+
5+
![image](https://user-images.githubusercontent.com/37651620/102813187-79d2c400-43f0-11eb-9893-16bbed8f6a2f.png)
6+
7+
---
8+
9+
![covid-19_Stats](https://user-images.githubusercontent.com/37651620/102812914-07fa7a80-43f0-11eb-968f-16e3a6936cc2.png)
10+
11+
---
12+
13+
# Getting Started with Create React App
214

315
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
416

@@ -8,23 +20,23 @@ In the project directory, you can run:
820

921
### `yarn start`
1022

11-
Runs the app in the development mode.<br />
23+
Runs the app in the development mode.\
1224
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
1325

14-
The page will reload if you make edits.<br />
26+
The page will reload if you make edits.\
1527
You will also see any lint errors in the console.
1628

1729
### `yarn test`
1830

19-
Launches the test runner in the interactive watch mode.<br />
31+
Launches the test runner in the interactive watch mode.\
2032
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
2133

2234
### `yarn build`
2335

24-
Builds the app for production to the `build` folder.<br />
36+
Builds the app for production to the `build` folder.\
2537
It correctly bundles React in production mode and optimizes the build for the best performance.
2638

27-
The build is minified and the filenames include the hashes.<br />
39+
The build is minified and the filenames include the hashes.\
2840
Your app is ready to be deployed!
2941

3042
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
@@ -47,24 +59,24 @@ To learn React, check out the [React documentation](https://reactjs.org/).
4759

4860
### Code Splitting
4961

50-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
62+
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
5163

5264
### Analyzing the Bundle Size
5365

54-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
66+
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
5567

5668
### Making a Progressive Web App
5769

58-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
70+
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
5971

6072
### Advanced Configuration
6173

62-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
74+
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
6375

6476
### Deployment
6577

66-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
78+
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
6779

6880
### `yarn build` fails to minify
6981

70-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
82+
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const { override, addWebpackAlias } = require("customize-cra")
2+
const path = require('path')
3+
4+
const rootImport = {
5+
['~']: path.resolve(__dirname, 'src')
6+
};
7+
8+
module.exports = override(addWebpackAlias(rootImport))
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es6",
4+
"module": "commonJS",
5+
"allowSyntheticDefaultImports": true,
6+
"baseUrl": "./",
7+
"paths": {
8+
"~/*": ["./src/*"]
9+
}
10+
},
11+
"exclude": [
12+
"build",
13+
"node_modules"
14+
]
15+
}

0 commit comments

Comments
 (0)