Skip to content

Commit 8f8f693

Browse files
committed
1st Commit
0 parents  commit 8f8f693

18 files changed

+5530
-0
lines changed

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
# Quiz App Using React
3+
4+
5+
6+
7+
## Installation
8+
9+
Install my-project with npm
10+
11+
```bash
12+
git clone https://github.com/kabeerx9/quiz-react-app.git
13+
cd quiz-react-app
14+
npm install
15+
npm run dev
16+
```
17+
18+
19+
## Deployment
20+
21+
Project is deployed on Netlify
22+
23+
```bash
24+
https://goreeva-assignment.netlify.app/app
25+
```
26+
27+
28+
## Features
29+
30+
- Users can take quizzes and view their scores.
31+
- Users can create a new quiz or edit existing ones.
32+
33+
34+
## Tech Stack
35+
36+
**Client:** React, Firebase
37+

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Vite + React</title>
9+
</head>
10+
11+
<body>
12+
<div id="root"></div>
13+
<script type="module" src="/src/main.jsx"></script>
14+
</body>
15+
16+
</html>

0 commit comments

Comments
 (0)