├── favicon.ico ├── API.js ├── README.md ├── package.json └── index.html /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanBinu007/React-My_Google/HEAD/favicon.ico -------------------------------------------------------------------------------- /API.js: -------------------------------------------------------------------------------- 1 | export const key = "AIzaSyAv-VrIiwiUxElsoottMB2RjHv3_rHRphc"; 2 | export const cx = "11b29bafcf00fe878"; 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Merge - Video Chat for Online Interviews 2 | 3 | 4 | ## Tech We Used 5 | 6 | - HTML 7 | - CSS 8 | - JAVASCRIPT 9 | 10 | 11 | 12 | 13 | #### Hope you liked this project, dont forget to ⭐ the repo. 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-clone", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^4.2.4", 7 | "@testing-library/react": "^9.5.0", 8 | "@testing-library/user-event": "^7.2.1", 9 | "axios": "^0.20.0", 10 | "react": "^16.13.1", 11 | "react-dom": "^16.13.1", 12 | "react-icons": "^3.11.0", 13 | "react-router-dom": "^5.2.0", 14 | "react-scripts": "3.4.3" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build", 19 | "test": "react-scripts test", 20 | "eject": "react-scripts eject" 21 | }, 22 | "eslintConfig": { 23 | "extends": "react-app" 24 | }, 25 | "browserslist": { 26 | "production": [ 27 | ">0.2%", 28 | "not dead", 29 | "not op_mini all" 30 | ], 31 | "development": [ 32 | "last 1 chrome version", 33 | "last 1 firefox version", 34 | "last 1 safari version" 35 | ] 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 |