Skip to content

Commit ead5387

Browse files
refact: improve README.md and fix App.js import in index.js for Vercel
1 parent eca26e7 commit ead5387

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rick and Morty Memory Card Game — Class-Based React Architecture, Animated UI, Testing and CI CD integrated
1+
# Rick and Morty Memory Card Game — Class-Based React Architecture, Animated UI, Testing & CI CD integrated
22

33
<div align="center">
44

@@ -252,7 +252,7 @@ Each component has its own `.module.css` file:
252252
## Project Structure
253253

254254
```
255-
rick-and-morty-card-game-react/
255+
rick-morty-game-react/
256256
├── .github/
257257
│ └── workflows/
258258
│ └── ci.yml # GitHub Actions CI/CD pipeline
@@ -406,9 +406,13 @@ rick-and-morty-card-game-react/
406406
### Quick Start
407407

408408
```bash
409-
# Clone the repository
410-
git clone https://github.com/umarSiddique010/rick-and-morty-card-game.git
411-
cd rick-and-morty-card-game
409+
Using SSH:
410+
git clone git@github.com:umarSiddique010/rick-morty-game-react.git
411+
412+
Or using HTTPS:
413+
git clone https://github.com/umarSiddique010/rick-morty-game-react.git
414+
415+
cd rick-morty-game-react
412416

413417
# Install dependencies
414418
npm install --legacy-peer-deps

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom/client';
33
import './index.css';
4-
import App from './App';
4+
import App from './App.js';
55
import reportWebVitals from './reportWebVitals';
66

77
const root = ReactDOM.createRoot(document.getElementById('root'));

0 commit comments

Comments
 (0)