浏览代码

compilation fix

amenpunk 3 年之前
父节点
当前提交
1c0e8bad93
共有 1 个文件被更改,包括 2 次插入2 次删除
  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