Skip to content

Commit

Permalink
💄 style : Add images to your quiz page
Browse files Browse the repository at this point in the history
- Add images required for quiz grading
- Add icons required for quiz creation
- Manage images and icons using an index file

Related Issue: YJU-OKURA#102
  • Loading branch information
dorimu0 committed Jun 7, 2024
1 parent deae295 commit 895e478
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 0 deletions.
Binary file added public/images/quiz/false.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/images/quiz/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const pngs = {
true: '/images/quiz/true.png',
false: '/images/quiz/false.png',
};

export default pngs;
Binary file added public/images/quiz/true.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/svgs/quiz/delete.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/svgs/quiz/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const icons = {
normal: '/svgs/quiz/normal.svg',
more: '/svgs/quiz/more.svg',
delete: '/svgs/quiz/delete.svg',
plus: '/svgs/quiz/plus.svg',
};

export default icons;
1 change: 1 addition & 0 deletions public/svgs/quiz/more.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/svgs/quiz/normal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/svgs/quiz/plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 895e478

Please sign in to comment.