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