-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timer #48
Timer #48
Conversation
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Reviewer Guide 🔍
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨
|
User description
PR Type
enhancement, tests
Description
QuizComponent
to limit time per question.ScoreModal
component to display quiz results upon completion.Changes walkthrough 📝
page.tsx
Fix import path for QuizComponent
components/src/app/cards/[id]/page.tsx
QuizComponent
.page.tsx
Fix import path and add React import
components/src/app/cards/page.tsx
QuizCards
.page.tsx
Fix import path for QuizComponent
components/src/app/page.tsx
QuizComponent
.QuizCards.tsx
Update import order and inline styles
components/src/components/QuizCards/QuizCards.tsx
QuizComponent.tsx
Add timer and score modal to QuizComponent
components/src/components/QuizCards/QuizComponent.tsx
ScoreModal
component.ScoreModal.tsx
Create ScoreModal component for quiz results
components/src/components/QuizCards/ScoreModal.tsx
ScoreModal
component for displaying quiz results.StaticData.ts
Add timer property to questions in static data
components/src/components/QuizCards/StaticData.ts
index.ts
Export ScoreModal from index
components/src/components/QuizCards/index.ts
ScoreModal
from index.