Browse Source

compilation fix

amenpunk 2 years ago
parent
commit
1c0e8bad93
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Components/Test/Cleaver/Question.jsx

+ 2 - 2
src/Components/Test/Cleaver/Question.jsx

@@ -1,7 +1,7 @@
1 1
 import * as React from 'react';
2 2
 import { Remove as RemoveIcon, Add as AddIcon } from '@mui/icons-material';
3 3
 import {
4
-  Card,CardContent,Avatar,Checkbox,List,Tooltip,Fade,Slide,
4
+  Card,CardContent,Avatar,Checkbox,List,Tooltip,Fade,
5 5
   ListItem,ListItemButton,ListItemIcon,ListItemText,
6 6
 } from '@mui/material'
7 7
 
@@ -119,7 +119,7 @@ function CheckboxesGroup(props) {
119 119
   );
120 120
 }
121 121
 
122
-export function Question({quiz, index, current, progress}) {
122
+export function Question({quiz, index, current}) {
123 123
   let { instrucciondepregunta, respuestas,id } = quiz
124 124
   let checked = index === current;
125 125